Commit eb117c82 authored by hongguangwu's avatar hongguangwu

MVP1.7.7-花名册

parent 584294f8
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package com.yifu.cloud.plus.v1.yifu.archives.entity;
import com.alibaba.excel.annotation.ExcelProperty;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import org.hibernate.validator.constraints.Length;
/**
* 项目档案所属部门表
*
* @author hgw
* @date 2025-02-28 15:03:17
*/
@Data
@TableName("t_employee_project_belong_dept")
@Schema(description = "项目档案所属部门表")
public class TEmployeeProjectBelongDept {
/**
* 项目档案ID
*/
@TableId(type = IdType.ASSIGN_ID)
@ExcelProperty("项目档案ID")
@Schema(description = "项目档案ID")
private String id;
/**
* 所属部门名称
*/
@ExcelAttribute(name = "所属部门名称", maxLength = 30)
@Length(max = 30, message = "所属部门名称不能超过30个字符")
@ExcelProperty("所属部门名称")
@Schema(description = "所属部门名称")
private String empDeptname;
/**
* 所属部门id
*/
@ExcelAttribute(name = "所属部门id", maxLength = 36)
@Length(max = 36, message = "所属部门id不能超过36个字符")
@ExcelProperty("所属部门id")
@Schema(description = "所属部门id")
private String empDeptid;
}
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package com.yifu.cloud.plus.v1.yifu.archives.vo;
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.write.style.ColumnWidth;
import com.alibaba.excel.annotation.write.style.HeadFontStyle;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttributeConstants;
import com.yifu.cloud.plus.v1.yifu.common.core.vo.RowIndex;
import lombok.Data;
import java.io.Serializable;
import java.time.LocalDate;
/**
* CSP客户服务平台-花名册
* @author hgw
* @date 2025-2-28 18:10:00
*/
@Data
@ColumnWidth(30)
public class EmployeeProjectScpVO extends RowIndex implements Serializable {
private static final long serialVersionUID = 1L;
@ExcelAttribute(name = "员工姓名")
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty(value = "员工姓名")
private String empName;
@ExcelAttribute(name = "身份证号")
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty(value = "身份证号")
private String empIdcard;
@ExcelAttribute(name = "员工手机号")
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty(value = "员工手机号")
private String empPhone;
@ExcelAttribute(name = "所属部门", maxLength = 30)
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty("所属部门")
private String empDeptname;
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty(value = "就职岗位")
@ExcelAttribute(name = "就职岗位")
private String post;
// (0在职;1离职
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty(value = "在职状态")
@ExcelAttribute(name = "在职状态")
private String projectStatus;
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty(value = "入/离职日期")
@ExcelAttribute(name = "入/离职日期")
private LocalDate enjoinDateAndLeaveTime;
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty(value = "合同签订状态")
@ExcelAttribute(name = "合同签订状态", isDataId = true, dataType = ExcelAttributeConstants.PERSONNEL_STATE)
private String contractStatus;
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty(value = "商险购买状态")
@ExcelAttribute(name = "商险购买状态", isDataId = true, dataType = ExcelAttributeConstants.COMMERCIAL_SATTE)
private String insuranceStatus;
}
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package com.yifu.cloud.plus.v1.yifu.archives.vo;
import com.baomidou.mybatisplus.annotation.TableField;
import com.yifu.cloud.plus.v1.yifu.archives.entity.TEmployeeProjectBelongDept;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.time.LocalDateTime;
/**
* 项目档案所属部门表
*
* @author hgw
* @date 2025-02-28 15:03:17
*/
@Data
public class TEmployeeProjectBelongDeptSearchVo extends EmployeeProjectScpVO {
/**
* 多选导出或删除等操作
*/
@Schema(description = "选中ID,多个逗号分割")
private String ids;
// 必传:
@Schema(description = "项目ID")
private String deptId;
// 前端传这个
@Schema(description = "员工所属部门ID逗号分割")
private String empDeptId;
// 后端自己转化为arr:员工所属部门ID逗号分割 转化为arr
private String[] empDeptIdArray;
@Schema(description = "入离职日期开始时间")
private LocalDateTime enjoinDateAndLeaveTimeStart;
@Schema(description = "入离职日期结束时间")
private LocalDateTime enjoinDateAndLeaveTimeEnd;
@Schema(description = "商险状态多个")
private String[] insuranceStatusArray;
@Schema(description = "合同状态多个")
private String[] contractStatusArray;
@Schema(description = "在职状态多个")
private String[] projectStatusArray;
@Schema(description = "就职岗位多个")
private String[] postArray;
/**
* 查询数据起
**/
@Schema(description = "查询limit 开始")
private int limitStart;
/**
* 查询数据止
**/
@Schema(description = "查询limit 数据条数")
private int limitEnd;
}
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package com.yifu.cloud.plus.v1.yifu.archives.controller;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.yifu.cloud.plus.v1.yifu.archives.entity.TEmployeeProjectBelongDept;
import com.yifu.cloud.plus.v1.yifu.archives.service.TEmployeeProjectBelongDeptService;
import com.yifu.cloud.plus.v1.yifu.archives.vo.EmployeeProjectScpVO;
import com.yifu.cloud.plus.v1.yifu.archives.vo.TEmployeeProjectBelongDeptSearchVo;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.CommonConstants;
import com.yifu.cloud.plus.v1.yifu.common.core.util.Common;
import com.yifu.cloud.plus.v1.yifu.common.core.util.R;
import com.yifu.cloud.plus.v1.yifu.common.log.annotation.SysLog;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.RequiredArgsConstructor;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletResponse;
/**
* 项目档案所属部门表
*
* @author hgw
* @date 2025-02-28 15:03:17
*/
@RestController
@RequiredArgsConstructor
@RequestMapping("/temployeeprojectbelongdept")
@Tag(name = "项目档案所属部门表管理")
public class TEmployeeProjectBelongDeptController {
private final TEmployeeProjectBelongDeptService tEmployeeProjectBelongDeptService;
/**
* 简单分页查询
*
* @param page 分页对象
* @param tEmployeeProjectBelongDept 项目档案所属部门表
* @return
*/
@Operation(description = "简单分页查询")
@GetMapping("/page")
public R<IPage<EmployeeProjectScpVO>> getTEmployeeProjectBelongDeptPage(Page<EmployeeProjectScpVO> page
, TEmployeeProjectBelongDeptSearchVo tEmployeeProjectBelongDept) {
return new R<>(tEmployeeProjectBelongDeptService.getTEmployeeProjectBelongDeptPage(page, tEmployeeProjectBelongDept));
}
/**
* @param id 项目id
* @Description: 项目档案详情,获取所属部门,需要额外请求接口:
* @Author: hgw
* @Date: 2025/3/3 9:38
* @return: com.yifu.cloud.plus.v1.yifu.common.core.util.R<com.yifu.cloud.plus.v1.yifu.archives.entity.TEmployeeProjectBelongDept>
**/
@Operation(summary = "通过id查询", description = "通过id查询")
@GetMapping("/{id}")
public R<TEmployeeProjectBelongDept> getById(@PathVariable("id") String id) {
return R.ok(tEmployeeProjectBelongDeptService.getById(id));
}
/**
* @param tEmployeeProjectBelongDept
* @Description: 项目组织维护(新增、修改、清空 项目档案所属部门表)
* @Author: hgw
* @Date: 2025/3/3 9:37
* @return: com.yifu.cloud.plus.v1.yifu.common.core.util.R<java.lang.String>
**/
@Operation(summary = "项目组织维护", description = "项目组织维护:hasPermission('archives_temployeeprojectbelongdept_add')")
@SysLog("项目组织维护")
@PostMapping("/saveOrUpdate")
@PreAuthorize("@pms.hasPermission('archives_temployeeprojectbelongdept_add')")
public R<String> saveOrUpdate(@RequestBody TEmployeeProjectBelongDept tEmployeeProjectBelongDept) {
if (Common.isEmpty(tEmployeeProjectBelongDept.getId())) {
return R.failed("项目ID必填");
}
if (Common.isEmpty(tEmployeeProjectBelongDept.getEmpDeptid())) {
tEmployeeProjectBelongDeptService.removeById(tEmployeeProjectBelongDept.getId());
} else if (Common.isEmpty(tEmployeeProjectBelongDept.getEmpDeptname())) {
return R.failed("所属部门名称必填");
}
tEmployeeProjectBelongDeptService.saveOrUpdate(tEmployeeProjectBelongDept);
return R.ok(CommonConstants.SAVE_SUCCESS);
}
/**
* CSP导出花名册
* @author hgw
* @date 2025-02-28 15:03:17
**/
@Operation(description = "CSP导出花名册")
@PostMapping("/export")
public void export(HttpServletResponse response, @RequestBody TEmployeeProjectBelongDeptSearchVo searchVo) {
tEmployeeProjectBelongDeptService.listExport(response,searchVo);
}
}
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package com.yifu.cloud.plus.v1.yifu.archives.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.yifu.cloud.plus.v1.yifu.archives.entity.TEmployeeProjectBelongDept;
import com.yifu.cloud.plus.v1.yifu.archives.vo.EmployeeProjectScpVO;
import com.yifu.cloud.plus.v1.yifu.archives.vo.TEmployeeProjectBelongDeptSearchVo;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* 项目档案所属部门表
*
* @author hgw
* @date 2025-02-28 15:03:17
*/
@Mapper
public interface TEmployeeProjectBelongDeptMapper extends BaseMapper<TEmployeeProjectBelongDept> {
/**
* 项目档案所属部门表简单分页查询
*
* @param tEmployeeProjectBelongDept 项目档案所属部门表
* @return
*/
IPage<EmployeeProjectScpVO> getTEmployeeProjectBelongDeptPage(Page<EmployeeProjectScpVO> page
, @Param("tEmployeeProjectBelongDept") TEmployeeProjectBelongDeptSearchVo tEmployeeProjectBelongDept);
// 导出的条数
int getTEmployeeProjectBelongDeptCount(
@Param("tEmployeeProjectBelongDept") TEmployeeProjectBelongDeptSearchVo tEmployeeProjectBelongDept);
// 导出的数据
List<EmployeeProjectScpVO> getTEmployeeProjectBelongDeptList(
@Param("tEmployeeProjectBelongDept") TEmployeeProjectBelongDeptSearchVo tEmployeeProjectBelongDept);
}
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package com.yifu.cloud.plus.v1.yifu.archives.service;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import com.yifu.cloud.plus.v1.yifu.archives.entity.TEmployeeProjectBelongDept;
import com.yifu.cloud.plus.v1.yifu.archives.vo.EmployeeProjectScpVO;
import com.yifu.cloud.plus.v1.yifu.archives.vo.TEmployeeProjectBelongDeptSearchVo;
import javax.servlet.http.HttpServletResponse;
/**
* 项目档案所属部门表
*
* @author hgw
* @date 2025-02-28 15:03:17
*/
public interface TEmployeeProjectBelongDeptService extends IService<TEmployeeProjectBelongDept> {
/**
* 项目档案所属部门表简单分页查询
*
* @param tEmployeeProjectBelongDept 项目档案所属部门表
* @return
*/
IPage<EmployeeProjectScpVO> getTEmployeeProjectBelongDeptPage(Page<EmployeeProjectScpVO> page
, TEmployeeProjectBelongDeptSearchVo tEmployeeProjectBelongDept);
/**
* @Description: CSP导出花名册
* @Author: hgw
* @Date: 2025/3/3 9:39
* @return: void
**/
void listExport(HttpServletResponse response, TEmployeeProjectBelongDeptSearchVo searchVo);
}
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package com.yifu.cloud.plus.v1.yifu.archives.service.impl;
import com.alibaba.excel.EasyExcelFactory;
import com.alibaba.excel.ExcelWriter;
import com.alibaba.excel.write.metadata.WriteSheet;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.yifu.cloud.plus.v1.yifu.archives.entity.TEmployeeProjectBelongDept;
import com.yifu.cloud.plus.v1.yifu.archives.mapper.TEmployeeProjectBelongDeptMapper;
import com.yifu.cloud.plus.v1.yifu.archives.service.TEmployeeProjectBelongDeptService;
import com.yifu.cloud.plus.v1.yifu.archives.vo.EmployeeProjectScpVO;
import com.yifu.cloud.plus.v1.yifu.archives.vo.TEmployeeProjectBelongDeptSearchVo;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.CacheConstants;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.CommonConstants;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttributeConstants;
import com.yifu.cloud.plus.v1.yifu.common.core.util.Common;
import com.yifu.cloud.plus.v1.yifu.common.core.util.DateUtil;
import com.yifu.cloud.plus.v1.yifu.common.core.util.DictConverter;
import com.yifu.cloud.plus.v1.yifu.common.core.util.RedisUtil;
import lombok.extern.log4j.Log4j2;
import org.springframework.stereotype.Service;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.net.URLEncoder;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* 项目档案所属部门表
*
* @author hgw
* @date 2025-02-28 15:03:17
*/
@Log4j2
@Service
public class TEmployeeProjectBelongDeptServiceImpl extends ServiceImpl<TEmployeeProjectBelongDeptMapper, TEmployeeProjectBelongDept> implements TEmployeeProjectBelongDeptService {
/**
* 项目档案所属部门表简单分页查询
*
* @param tEmployeeProjectBelongDept 项目档案所属部门表
* @return
*/
@Override
public IPage<EmployeeProjectScpVO> getTEmployeeProjectBelongDeptPage(Page<EmployeeProjectScpVO> page, TEmployeeProjectBelongDeptSearchVo tEmployeeProjectBelongDept) {
this.setSearchParam(tEmployeeProjectBelongDept);
return baseMapper.getTEmployeeProjectBelongDeptPage(page, tEmployeeProjectBelongDept);
}
/**
* @Description: 处理查询条件
* @Author: hgw
* @Date: 2025/3/3 9:47
* @return: void
**/
private void setSearchParam(TEmployeeProjectBelongDeptSearchVo tEmployeeProjectBelongDept) {
if (Common.isEmpty(tEmployeeProjectBelongDept.getDeptId())) {
// 没传项目id,置为-1,不给查询
tEmployeeProjectBelongDept.setDeptId("-1");
}
if (Common.isNotNull(tEmployeeProjectBelongDept.getEmpDeptId()) && !"-1".equals(tEmployeeProjectBelongDept.getEmpDeptId())) {
tEmployeeProjectBelongDept.setEmpDeptIdArray(tEmployeeProjectBelongDept.getEmpDeptId().split(","));
}
}
/**
* @Description: CSP导出花名册
* @Author: hgw
* @Date: 2025/3/3 9:54
* @return: void
**/
@Override
public void listExport(HttpServletResponse response, TEmployeeProjectBelongDeptSearchVo searchVo) {
String fileName = "人员花名册批量导出" + DateUtil.getThisTime() + ".xlsx";
//获取要导出的列表
List<EmployeeProjectScpVO> list = new ArrayList<>();
// 处理查询条件
this.setSearchParam(searchVo);
long count = baseMapper.getTEmployeeProjectBelongDeptCount(searchVo);
ServletOutputStream out = null;
try {
out = response.getOutputStream();
response.setContentType(CommonConstants.MULTIPART_FORM_DATA);
response.setCharacterEncoding("utf-8");
response.setHeader(CommonConstants.CONTENT_DISPOSITION, CommonConstants.ATTACHMENT_FILENAME + URLEncoder.encode(fileName, CommonConstants.UTF8));
// 这里 需要指定写用哪个class去写,然后写到第一个sheet,然后文件流会自动关闭
Map<String, String> nameAndDicTypeMap = new HashMap<>();
nameAndDicTypeMap.put("contractStatus", ExcelAttributeConstants.PERSONNEL_STATE);
nameAndDicTypeMap.put("insuranceStatus", ExcelAttributeConstants.COMMERCIAL_SATTE);
Map<String, String> redisLabelMap = (Map<String, String>) RedisUtil.redis.opsForValue().get(CacheConstants.REDIS_DICT_LABLE);
ExcelWriter excelWriter = EasyExcelFactory.write(out, EmployeeProjectScpVO.class).registerConverter(new DictConverter(nameAndDicTypeMap, redisLabelMap)).build();
int index = 0;
if (count > CommonConstants.ZERO_INT) {
for (int i = 0; i <= count; i += CommonConstants.EXCEL_EXPORT_LIMIT) {
// 获取实际记录
searchVo.setLimitStart(i);
searchVo.setLimitEnd(CommonConstants.EXCEL_EXPORT_LIMIT);
list = baseMapper.getTEmployeeProjectBelongDeptList(searchVo);
if (Common.isNotNull(list)) {
WriteSheet writeSheet = EasyExcelFactory.writerSheet("花名册" + index).build();
excelWriter.write(list, writeSheet);
index++;
}
if (Common.isNotNull(list)) {
list.clear();
}
}
} else {
WriteSheet writeSheet = EasyExcelFactory.writerSheet("花名册" + index).build();
excelWriter.write(list, writeSheet);
}
if (Common.isNotNull(list)) {
list.clear();
}
out.flush();
excelWriter.finish();
} catch (Exception e) {
log.error("执行异常", e);
} finally {
try {
if (null != out) {
out.close();
}
} catch (IOException e) {
log.error("执行异常", e);
}
}
}
}
<?xml version="1.0" encoding="UTF-8"?>
<!--
~
~ Copyright (c) 2018-2025, lengleng All rights reserved.
~
~ Redistribution and use in source and binary forms, with or without
~ modification, are permitted provided that the following conditions are met:
~
~ Redistributions of source code must retain the above copyright notice,
~ this list of conditions and the following disclaimer.
~ Redistributions in binary form must reproduce the above copyright
~ notice, this list of conditions and the following disclaimer in the
~ documentation and/or other materials provided with the distribution.
~ Neither the name of the yifu4cloud.com developer nor the names of its
~ contributors may be used to endorse or promote products derived from
~ this software without specific prior written permission.
~ Author: lengleng (wangiegie@gmail.com)
~
-->
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yifu.cloud.plus.v1.yifu.archives.mapper.TEmployeeProjectBelongDeptMapper">
<resultMap id="tEmployeeProjectBelongDeptMap"
type="com.yifu.cloud.plus.v1.yifu.archives.entity.TEmployeeProjectBelongDept">
<id property="id" column="ID"/>
<result property="empDeptname" column="emp_deptname"/>
<result property="empDeptid" column="emp_deptid"/>
</resultMap>
<sql id="tEmployeeProjectBelongDept_where">
<if test="tEmployeeProjectBelongDept != null">
<if test="tEmployeeProjectBelongDept.empName != null and tEmployeeProjectBelongDept.empName.trim() != ''">
AND a.EMP_NAME like concat('%',#{tEmployeeProjectBelongDept.empName},'%')
</if>
<if test="tEmployeeProjectBelongDept.empIdcard != null and tEmployeeProjectBelongDept.empIdcard.trim() != ''">
AND a.EMP_IDCARD like concat('%',#{tEmployeeProjectBelongDept.empIdcard},'%')
</if>
<if test="tEmployeeProjectBelongDept.empPhone != null and tEmployeeProjectBelongDept.empPhone.trim() != ''">
AND e.EMP_PHONE like concat('%',#{tEmployeeProjectBelongDept.empPhone},'%')
</if>
<if test="tEmployeeProjectBelongDept.ids != null and tEmployeeProjectBelongDept.ids.size() > 0">
a.ID in
<foreach collection="tEmployeeProjectBelongDept.ids" item="param" index="index" open="(" close=")"
separator=",">
#{param}
</foreach>
</if>
<if test="tEmployeeProjectBelongDept.contractStatusArray != null and tEmployeeProjectBelongDept.contractStatusArray.length > 0">
AND a.CONTRACT_STATUS in
<foreach item="idStr" index="index" collection="tEmployeeProjectBelongDept.contractStatusArray" open="("
separator="," close=")">
#{idStr}
</foreach>
</if>
<if test="tEmployeeProjectBelongDept.insuranceStatusArray != null and tEmployeeProjectBelongDept.insuranceStatusArray.length > 0">
AND a.INSURANCE_STATUS in
<foreach item="idStr" index="index" collection="tEmployeeProjectBelongDept.insuranceStatusArray"
open="("
separator="," close=")">
#{idStr}
</foreach>
</if>
<if test="tEmployeeProjectBelongDept.projectStatusArray != null and tEmployeeProjectBelongDept.projectStatusArray.length > 0">
AND a.PROJECT_STATUS in
<foreach item="idStr" index="index" collection="tEmployeeProjectBelongDept.projectStatusArray" open="("
separator="," close=")">
#{idStr}
</foreach>
</if>
<if test="tEmployeeProjectBelongDept.enjoinDateAndLeaveTime != null and tEmployeeProjectBelongDept.enjoinDateAndLeaveTime.length > 0">
AND a.POST in
<foreach item="idStr" index="index" collection="tEmployeeProjectBelongDept.postArray" open="("
separator="," close=")">
#{idStr}
</foreach>
</if>
<if test="tEmployeeProjectBelongDept.enjoinDateAndLeaveTimeStart != null">
and if(a.PROJECT_STATUS=0,a.ENJOIN_DATE,a.LEAVE_TIME) <![CDATA[ >= ]]>
#{tEmployeeProjectBelongDept.enjoinDateAndLeaveTimeStart}
</if>
<if test="tEmployeeProjectBelongDept.enjoinDateAndLeaveTimeEnd != null">
and if(a.PROJECT_STATUS=0,a.ENJOIN_DATE,a.LEAVE_TIME) <![CDATA[ <= ]]>
#{tEmployeeProjectBelongDept.enjoinDateAndLeaveTimeEnd}
</if>
</if>
</sql>
<!--tEmployeeProjectBelongDept简单分页查询-->
<select id="getTEmployeeProjectBelongDeptPage"
resultType="com.yifu.cloud.plus.v1.yifu.archives.vo.EmployeeProjectScpVO">
select
a.EMP_NAME empName
,a.EMP_IDCARD empIdcard
,e.EMP_PHONE empPhone
,b.emp_deptname empDeptname
,a.POST post
,if(a.PROJECT_STATUS=0,'在职','离职') projectStatus
,if(a.PROJECT_STATUS=0,DATE_FORMAT(a.ENJOIN_DATE,'%Y-%m-%d'),DATE_FORMAT(a.LEAVE_TIME,'%Y-%m-%d')) enjoinDateAndLeaveTime
,a.CONTRACT_STATUS contractStatus
,a.INSURANCE_STATUS insuranceStatus
from t_employee_project a
LEFT JOIN t_employee_info e on a.emp_id=e.id
LEFT JOIN t_employee_project_belong_dept b on a.id=b.id
<where>
1=1
<include refid="tEmployeeProjectBelongDept_where"/>
</where>
</select>
<!-- 导出的条数 -->
<select id="getTEmployeeProjectBelongDeptCount" resultType="java.lang.Integer">
select
count(1)
from t_employee_project a
LEFT JOIN t_employee_info e on a.emp_id=e.id
LEFT JOIN t_employee_project_belong_dept b on a.id=b.id
<where>
1=1
<include refid="tEmployeeProjectBelongDept_where"/>
</where>
</select>
<!-- 导出的数据 -->
<select id="getTEmployeeProjectBelongDeptList"
resultType="com.yifu.cloud.plus.v1.yifu.archives.vo.EmployeeProjectScpVO">
select
a.EMP_NAME empName
,a.EMP_IDCARD empIdcard
,e.EMP_PHONE empPhone
,b.emp_deptname empDeptname
,a.POST post
,if(a.PROJECT_STATUS=0,'在职','离职') projectStatus
,if(a.PROJECT_STATUS=0,DATE_FORMAT(a.ENJOIN_DATE,'%Y-%m-%d'),DATE_FORMAT(a.LEAVE_TIME,'%Y-%m-%d'))
enjoinDateAndLeaveTime
,a.CONTRACT_STATUS contractStatus
,a.INSURANCE_STATUS insuranceStatus
from t_employee_project a
LEFT JOIN t_employee_info e on a.emp_id=e.id
LEFT JOIN t_employee_project_belong_dept b on a.id=b.id
<where>
1=1
<include refid="tEmployeeProjectBelongDept_where"/>
</where>
<if test="tEmployeeProjectBelongDept_where != null">
<if test="tEmployeeProjectBelongDept.limitStart != null">
limit #{tEmployeeProjectBelongDept.limitStart},#{tEmployeeProjectBelongDept.limitEnd}
</if>
</if>
</select>
</mapper>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment