Commit 5576d361 authored by hongguangwu's avatar hongguangwu

Merge branch 'develop' into MVP1.7.9-fxj

parents 9c2b9e6d e7c6d91b
package com.yifu.cloud.plus.v1.yifu.archives.entity;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.io.Serializable;
/**
* 入职待办条数vo
*
* @author huych
* @date 2025-03-12 17:14:19
*/
@Data
public class EmployeeRegistrationCountVo implements Serializable {
@Schema(description = "入职待确认数量")
private long typeOneCount;
@Schema(description = "入职待建档数量")
private long typeTwoCount;
@Schema(description = "档案待完整数量")
private long typeThreeCount;
@Schema(description = "总数量")
private long totalCount;
}
package com.yifu.cloud.plus.v1.yifu.archives.entity;
import com.baomidou.mybatisplus.annotation.*;
import com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.time.LocalDateTime;
import java.util.Date;
/**
* 入职待建档表
*
* @author huych
* @date 2025-03-12 17:14:19
*/
@Data
@TableName("employee_registration_pre")
@EqualsAndHashCode(callSuper = true)
@Schema(description = "入职待建档表")
public class EmployeeRegistrationPre extends BaseEntity {
/**
* 主键ID
*/
@TableId(type = IdType.ASSIGN_ID)
@Schema(description = "主键ID")
private String id;
@Schema(description = "员工姓名")
private String employeeName;
@Schema(description = "身份证号")
private String empIdcard;
@Schema(description = "手机号码")
private String empPhone;
@Schema(description = "就职岗位")
private String position;
@Schema(description = "入职日期")
private Date joinLeaveDate;
@Schema(description = "状态,0短信待发送,1信息待填写,2信息待审核,3拒绝入职,4已完成")
private String processStatus;
@Schema(description = "前端客服")
private String customerUsername;
@Schema(description = "前端客服登录名")
private String customerUserLoginname;
@Schema(description = "项目名称")
private String deptName;
@Schema(description = "项目编码")
private String deptNo;
@Schema(description = "项目id")
private String deptId;
@Schema(description = "员工类型(字典值,0外包1派遣2代理)")
private String empNature;
@Schema(description = "合同类型(字典值)")
private String contractType;
@Schema(description = "合同业务细分(字典值)")
private String contractSubName;
@Schema(description = "数据来源")
private String dataSource;
@Schema(description = "预计收集时间")
private LocalDateTime expectedCollectionTime;
@Schema(description = "服务事项")
private String serverItem;
@Schema(description = "档案所在地-省")
private String fileProvince;
@Schema(description = "档案所在地-市")
private String fileCity;
@Schema(description = "档案所在地-县")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String fileTown;
@Schema(description = "档案所在地-省编号")
private String provinceCode;
@Schema(description = "档案所在地-市编号")
private String cityCode;
@Schema(description = "档案所在地-县编号")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String townCode;
@Schema(description = "确认人")
private String confirmUser;
@Schema(description = "确认时间")
private Date confirmTime;
@Schema(description = "最新的客服名称")
private String customerUsernameNew;
@Schema(description = "拒绝入职原因")
@TableField(exist = false)
private String reason;
}
/*
* 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.mybatis.base.BaseEntity;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute;
import org.hibernate.validator.constraints.Length;
import javax.validation.constraints.NotBlank;
/**
* 字典表
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@Data
@TableName("sys_auto_dict")
@EqualsAndHashCode(callSuper = true)
@Schema(description = "字典表")
public class SysAutoDict extends BaseEntity {
/**
* id
*/
@TableId(type = IdType.ASSIGN_ID)
@ExcelProperty("id")
@Schema(description = "id")
private Long id;
/**
* 字典编码
*/
@ExcelAttribute(name = "字典编码", maxLength = 100)
@Length(max = 100, message = "字典编码不能超过100个字符")
@ExcelProperty("字典编码")
@Schema(description = "字典编码")
private String type;
/**
* 字典名称
*/
@ExcelAttribute(name = "字典名称", maxLength = 100)
@Length(max = 100, message = "字典名称不能超过100个字符")
@ExcelProperty("字典名称")
@Schema(description = "字典名称")
private String description;
/**
* 备注
*/
@ExcelAttribute(name = "备注", maxLength = 255)
@Length(max = 255, message = "备注不能超过255个字符")
@ExcelProperty("备注")
@Schema(description = "备注")
private String remark;
/**
* 是否是系统内置
*/
@ExcelAttribute(name = "是否是系统内置", maxLength = 1)
@Length(max = 1, message = "是否是系统内置不能超过1个字符")
@ExcelProperty("是否是系统内置")
@Schema(description = "是否是系统内置")
private String systemFlag;
/**
* 删除标记
*/
@ExcelAttribute(name = "删除标记", maxLength = 1)
@Length(max = 1, message = "删除标记不能超过1个字符")
@ExcelProperty("删除标记")
@Schema(description = "删除标记")
private String delFlag;
/**
* 联动上级类型
*/
@ExcelAttribute(name = "联动上级类型", maxLength = 32)
@Length(max = 32, message = "联动上级类型不能超过32个字符")
@ExcelProperty("联动上级类型")
@Schema(description = "联动上级类型")
private String parentItemType;
/**
* 客户端标识
*/
@ExcelAttribute(name = "客户端标识", maxLength = 32)
@Length(max = 32, message = "客户端标识不能超过32个字符")
@ExcelProperty("客户端标识")
@Schema(description = "客户端标识")
private String clientId;
}
/*
* 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 com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.hibernate.validator.constraints.Length;
import javax.validation.constraints.NotBlank;
/**
* 字典项
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@Data
@TableName("sys_auto_dict_item")
@EqualsAndHashCode(callSuper = true)
@Schema(description = "字典项")
public class SysAutoDictItem extends BaseEntity {
/**
* id
*/
@TableId(type = IdType.ASSIGN_ID)
@ExcelProperty("id")
@Schema(description = "id")
private Long id;
/**
* 字典ID
*/
@ExcelAttribute(name = "字典ID")
@NotBlank(message = "字典ID不能为空")
@ExcelProperty("字典ID")
@Schema(description = "字典ID")
private Long dictId;
/**
* 值
*/
@ExcelAttribute(name = "值", maxLength = 100)
@Length(max = 100, message = "值不能超过100个字符")
@ExcelProperty("值")
@Schema(description = "值")
private String value;
/**
* 标签
*/
@ExcelAttribute(name = "标签", maxLength = 100)
@Length(max = 100, message = "标签不能超过100个字符")
@ExcelProperty("标签")
@Schema(description = "标签")
private String label;
/**
* 字典类型
*/
@ExcelAttribute(name = "字典类型", maxLength = 100)
@Length(max = 100, message = "字典类型不能超过100个字符")
@ExcelProperty("字典类型")
@Schema(description = "字典类型")
private String type;
/**
* 描述
*/
@ExcelAttribute(name = "描述", maxLength = 100)
@Length(max = 100, message = "描述不能超过100个字符")
@ExcelProperty("描述")
@Schema(description = "描述")
private String description;
/**
* 排序(升序)
*/
@ExcelAttribute(name = "排序(升序)", isNotEmpty = true, errorInfo = "排序(升序)不能为空")
@NotBlank(message = "排序(升序)不能为空")
@ExcelProperty("排序(升序)")
@Schema(description = "排序(升序)")
private Integer sortOrder;
/**
* 备注
*/
@ExcelAttribute(name = "备注", maxLength = 255)
@Length(max = 255, message = "备注不能超过255个字符")
@ExcelProperty("备注")
@Schema(description = "备注")
private String remark;
/**
* 删除标记
*/
@ExcelAttribute(name = "删除标记", maxLength = 1)
@Length(max = 1, message = "删除标记不能超过1个字符")
@ExcelProperty("删除标记")
@Schema(description = "删除标记")
private String delFlag;
/**
* 父节点ID
*/
@ExcelAttribute(name = "父节点ID")
@ExcelProperty("父节点ID")
@Schema(description = "父节点ID")
private Long parentId;
/**
* 客户端标识
*/
@ExcelAttribute(name = "客户端标识", maxLength = 32)
@Length(max = 32, message = "客户端标识不能超过32个字符")
@ExcelProperty("客户端标识")
@Schema(description = "客户端标识")
private String clientId;
/**
* 是否禁用: 0 启用 1 禁用
*/
@ExcelAttribute(name = "是否禁用: 0 启用 1 禁用", isNotEmpty = true, errorInfo = "是否禁用: 0 启用 1 禁用不能为空", maxLength = 1)
@NotBlank(message = "是否禁用: 0 启用 1 禁用不能为空")
@Length(max = 1, message = "是否禁用: 0 启用 1 禁用不能超过1个字符")
@ExcelProperty("是否禁用: 0 启用 1 禁用")
@Schema(description = "是否禁用: 0 启用 1 禁用")
private String disable;
/**
* 项目编码,标识此字典项为那个项目所有
*/
@ExcelAttribute(name = "项目编码,标识此字典项为那个项目所有", isNotEmpty = true, errorInfo = "项目编码,标识此字典项为那个项目所有不能为空", maxLength = 32)
@NotBlank(message = "项目编码,标识此字典项为那个项目所有不能为空")
@Length(max = 32, message = "项目编码,标识此字典项为那个项目所有不能超过32个字符")
@ExcelProperty("项目编码,标识此字典项为那个项目所有")
@Schema(description = "项目编码,标识此字典项为那个项目所有")
private String deptNo;
}
/*
* 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.*;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute;
import com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.hibernate.validator.constraints.Length;
import javax.validation.constraints.NotBlank;
/**
* 档案管理规则配置表
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@Data
@TableName("t_auto_emp_rule_info")
@EqualsAndHashCode(callSuper = true)
@Schema(description = "档案管理规则配置表")
public class TAutoEmpRuleInfo extends BaseEntity {
/**
* 主键
*/
@TableId(type = IdType.ASSIGN_ID)
@ExcelProperty("主键")
@Schema(description = "主键")
private String id;
/**
* 是否启用自动化:0是 1否
*/
@ExcelAttribute(name = "是否启用自动化:0是 1否", isNotEmpty = true, errorInfo = "是否启用自动化不能为空", maxLength = 1)
@NotBlank(message = "是否启用自动化:0是 1否不能为空")
@Length(max = 1, message = "是否启用自动化:0是 1否不能超过1个字符")
@ExcelProperty("是否启用自动化:0是 1否")
@Schema(description = "是否启用自动化:0是 1否")
private String autoFlag;
/**
* 收集方式:0自动1 手动
*/
@ExcelAttribute(name = "收集方式:0自动1 手动")
@Length(max = 1, message = "收集方式:0自动1 手动不能超过1个字符")
@ExcelProperty("收集方式:0自动1 手动")
@Schema(description = "收集方式:0自动1 手动")
private String collectType;
/**
* 推送类型
*/
@ExcelAttribute(name = "推送类型")
@ExcelProperty("推送类型")
@Schema(description = "推送类型 0 入职日期")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String pushType;
/**
* 推送时间
*/
@ExcelAttribute(name = "推送时间")
@ExcelProperty("推送时间")
@Schema(description = "推送时间")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String pushDate;
/**
* 员工类型
*/
@ExcelAttribute(name = "员工类型", maxLength = 2)
@Length(max = 2, message = "员工类型不能超过2个字符")
@ExcelProperty("员工类型")
@Schema(description = "员工类型")
private String empType;
/**
* 档案所在地-省
*/
@ExcelAttribute(name = "档案所在地-省", maxLength = 10)
@Length(max = 10, message = "档案所在地-省不能超过10个字符")
@ExcelProperty("档案所在地-省")
@Schema(description = "档案所在地-省")
private String empProvince;
/**
* 档案所在地-市
*/
@ExcelAttribute(name = "档案所在地-市", maxLength = 10)
@Length(max = 10, message = "档案所在地-市不能超过10个字符")
@ExcelProperty("档案所在地-市")
@Schema(description = "档案所在地-市")
private String empCity;
/**
* 档案所在地-县/区
*/
@ExcelAttribute(name = "档案所在地-县/区", maxLength = 10)
@Length(max = 10, message = "档案所在地-县/区不能超过10个字符")
@ExcelProperty("档案所在地-县/区")
@Schema(description = "档案所在地-县/区")
private String empTown;
/**
* 合同类型
*/
@ExcelAttribute(name = "合同类型", maxLength = 10)
@Length(max = 10, message = "合同类型不能超过10个字符")
@ExcelProperty("合同类型")
@Schema(description = "合同类型")
private String contractType;
/**
* 业务细分(同合的业务细分)
*/
@ExcelAttribute(name = "业务细分(同合的业务细分)")
@NotBlank(message = "业务细分(同合的业务细分)不能为空")
@Length(max = 32, message = "业务细分(同合的业务细分)不能超过32个字符")
@ExcelProperty("业务细分(同合的业务细分)")
@Schema(description = "业务细分(同合的业务细分)")
private String businessTypeSub;
/**
* 默认信息是否允许修改
*/
@ExcelAttribute(name = "默认信息是否允许修改", isNotEmpty = true, errorInfo = "默认信息是否允许修改不能为空", maxLength = 1)
@NotBlank(message = "默认信息是否允许修改不能为空")
@Length(max = 1, message = "默认信息是否允许修改不能超过1个字符")
@ExcelProperty("默认信息是否允许修改")
@Schema(description = "默认信息是否允许修改")
private String updateFlag;
/**
* 项目编码
*/
@ExcelAttribute(name = "项目编码")
@NotBlank(message = "项目编码不能为空")
@Length(max = 50, message = "项目编码不能超过50个字符")
@ExcelProperty("项目编码")
@Schema(description = "项目编码")
private String deptNo;
/**
* 项目ID
*/
@ExcelAttribute(name = "项目ID")
@Length(max = 32, message = "项目ID不能超过32个字符")
@ExcelProperty("项目ID")
@Schema(description = "项目ID")
private String deptId;
/**
* 项目配置主表ID
*/
@ExcelAttribute(name = "项目配置主表ID")
@Length(max = 32, message = "项目配置主表ID不能超过32个字符")
@ExcelProperty("项目配置主表ID")
@Schema(description = "项目配置主表ID")
private String mainId;
}
/*
* 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.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute;
import org.hibernate.validator.constraints.Length;
import javax.validation.constraints.NotBlank;
import java.util.Date;
/**
* 项目配置表主表
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@Data
@TableName("t_auto_main_rel")
@EqualsAndHashCode(callSuper = true)
@Schema(description = "项目配置表主表")
public class TAutoMainRel extends BaseEntity {
/**
* id
*/
@TableId(type = IdType.ASSIGN_ID)
@ExcelProperty("id")
@Schema(description = "id")
private String id;
/**
* 项目编码
*/
@ExcelAttribute(name = "项目编码", isNotEmpty = true, errorInfo = "项目编码不能为空", maxLength = 50)
@NotBlank(message = "项目编码不能为空")
@Length(max = 50, message = "项目编码不能超过50个字符")
@ExcelProperty("项目编码")
@Schema(description = "项目编码")
private String deptNo;
/**
* 项目ID
*/
@ExcelAttribute(name = "项目ID", isNotEmpty = true, errorInfo = "项目ID不能为空", maxLength = 32)
@NotBlank(message = "项目ID不能为空")
@Length(max = 32, message = "项目ID不能超过32个字符")
@ExcelProperty("项目ID")
@Schema(description = "项目ID")
private String deptId;
/**
* 规则最新更新时间
*/
@ExcelAttribute(name = "规则最新更新时间", isDate = true)
@ExcelProperty("规则最新更新时间")
@Schema(description = "规则最新更新时间")
private Date ruleUpdateTime;
/**
* 规则最新更新人
*/
@ExcelAttribute(name = "最新更新人", maxLength = 50)
@Length(max = 50, message = "最新更新人不能超过50个字符")
@ExcelProperty("最新更新人")
@Schema(description = "最新更新人")
private String ruleUpdatePerson;
/**
* 服务状态:0正常 1停止服务 2冻结 (是否使用:0是 非0否)
*/
@Schema(description = "服务状态:0正常 1停止服务 2冻结")
@TableField(exist = false)
private String stopFlag;
/**
* 岗位是否统一
*/
@ExcelAttribute(name = "岗位是否统一", maxLength = 1)
@Schema(description = "岗位是否统一 0是 1 否")
private String postFlag;
/**
* 项目名称
*/
@Schema(description = "项目名称")
@TableField(exist = false)
private String departName;
/**
* 前端客服
*/
@Schema(description = "前端客服")
@TableField(exist = false)
private String csUserName;
}
/*
* 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.mybatis.base.BaseEntity;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute;
import org.hibernate.validator.constraints.Length;
import javax.validation.constraints.NotBlank;
/**
* 规则变更日志表
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@Data
@TableName("t_auto_rule_log")
@EqualsAndHashCode(callSuper = true)
@Schema(description = "规则变更日志表")
public class TAutoRuleLog extends BaseEntity {
/**
* id
*/
@TableId(type = IdType.ASSIGN_ID)
@ExcelProperty("id")
@Schema(description = "id")
private String id;
/**
* 类型:0项目规则
*/
@ExcelAttribute(name = "类型:0项目规则")
@ExcelProperty("类型:0项目规则")
@Schema(description = "类型:0项目规则")
private Integer type;
/**
* 规则配置主表ID
*/
@ExcelAttribute(name = "规则配置主表ID", isNotEmpty = true, errorInfo = "规则配置主表ID不能为空", maxLength = 32)
@NotBlank(message = "规则配置主表ID不能为空")
@Length(max = 32, message = "规则配置主表ID不能超过32个字符")
@ExcelProperty("规则配置主表ID")
@Schema(description = "规则配置主表ID")
private String mainId;
/**
* 原来的信息
*/
@ExcelAttribute(name = "原来的信息", isNotEmpty = true, errorInfo = "原来的信息不能为空")
@NotBlank(message = "原来的信息不能为空")
@ExcelProperty("原来的信息")
@Schema(description = "原来的信息")
private String oldInfo;
/**
* 新的信息
*/
@ExcelAttribute(name = "新的信息", isNotEmpty = true, errorInfo = "新的信息不能为空")
@NotBlank(message = "新的信息不能为空")
@ExcelProperty("新的信息")
@Schema(description = "新的信息")
private String newInfo;
/**
* 差异的信息(属性名称,逗号隔开)
*/
@ExcelAttribute(name = "差异的信息(属性名称,逗号隔开)")
@ExcelProperty("差异的信息(属性名称,逗号隔开)")
@Schema(description = "差异的信息(属性名称,逗号隔开)")
private String differenceInfo;
}
......@@ -44,9 +44,9 @@ public class TEmployeeLog extends BaseEntity {
private String id;
/**
* 类型:0人员档案;1项目档案;2人员和项目档案;3员工合同更新
* 类型:0人员档案;1项目档案;2人员和项目档案;3员工合同更新 4入职确认信息
*/
@Schema(description = "类型:0人员档案;1项目档案;2人员和项目档案;3员工合同更新")
@Schema(description = "类型:0人员档案;1项目档案;2人员和项目档案;3员工合同更新;4入职确认信息")
private Integer type;
/**
......
......@@ -42,7 +42,7 @@ import java.time.LocalDateTime;
public class TPreEmpDeclaration implements Serializable {
/**
* id
* id 默认ID为2的为简档对应的声明
*/
@TableId(type = IdType.ASSIGN_ID)
@ExcelProperty("id")
......
......@@ -245,6 +245,11 @@ public class TPreEmpMain extends BaseEntity {
@Schema(description = "数据来源")
private String sourType;
@ExcelAttribute(name = "是否简档1详档2简档", maxLength = 2)
@ExcelProperty("是否简档1详档2简档")
@Schema(description = "是否简档1详档2简档")
private String isSimple;
@Schema(description = "状态多个")
@TableField(exist = false)
private String[] statusArray;
......
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 com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.hibernate.validator.constraints.Length;
import javax.validation.constraints.NotBlank;
import java.util.Date;
/**
* 入职登记发送短信记录表
*
* @author huych
* @date 2025-03-18 16:54:51
*/
@Data
@TableName("t_registe_warning_employee")
@EqualsAndHashCode(callSuper = true)
@Schema(description = "入职登记发送短信记录表")
public class TRegisteWarningEmployee extends BaseEntity {
/**
* 主键
*/
@TableId(type = IdType.AUTO)
@ExcelProperty("主键")
@Schema(description = "主键")
private Integer id;
/**
* 入职待建档明细id
*/
@ExcelAttribute(name = "入职待建档明细id", isNotEmpty = true, errorInfo = "入职待建档明细id不能为空", maxLength = 32)
@NotBlank(message = "入职待建档明细id不能为空")
@Length(max = 32, message = "入职待建档明细id不能超过32个字符")
@ExcelProperty("入职待建档明细id")
@Schema(description = "入职待建档明细id")
private String warningId;
/**
* 姓名
*/
@ExcelAttribute(name = "姓名", maxLength = 32)
@Length(max = 32, message = "姓名不能超过32个字符")
@ExcelProperty("姓名")
@Schema(description = "姓名")
private String empName;
/**
* 身份证
*/
@ExcelAttribute(name = "身份证", maxLength = 50)
@Length(max = 50, message = "身份证不能超过50个字符")
@ExcelProperty("身份证")
@Schema(description = "身份证")
private String empIdcard;
/**
* 项目id
*/
@ExcelAttribute(name = "项目id", maxLength = 50)
@Length(max = 50, message = "项目id不能超过50个字符")
@ExcelProperty("项目id")
@Schema(description = "项目id")
private String deptId;
/**
* 联系方式
*/
@ExcelAttribute(name = "联系方式", maxLength = 50)
@Length(max = 50, message = "联系方式不能超过50个字符")
@ExcelProperty("联系方式")
@Schema(description = "联系方式")
private String empPhone;
/**
* 发送时间
*/
@ExcelAttribute(name = "发送时间", isDate = true)
@ExcelProperty("发送时间")
@Schema(description = "发送时间")
private Date sendDate;
/**
* 回执id
*/
@ExcelAttribute(name = "回执id", maxLength = 50)
@Length(max = 50, message = "回执id不能超过50个字符")
@ExcelProperty("回执id")
@Schema(description = "回执id")
private String bizId;
/**
* 发送方式:0自动;1手动
*/
@ExcelAttribute(name = "发送方式:0自动;1手动")
@ExcelProperty("发送方式:0自动;1手动")
@Schema(description = "发送方式:0自动;1手动")
private Integer sendMethod;
/**
* 短信回执内容
*/
@ExcelAttribute(name = "短信回执内容", maxLength = 100)
@Length(max = 100, message = "短信回执内容不能超过100个字符")
@ExcelProperty("短信回执内容")
@Schema(description = "短信回执内容")
private String message;
@Schema(description = "类型 1 待建档 2 带完整")
private String type;
}
......@@ -211,4 +211,7 @@ public class DispatchEmpVo implements Serializable {
@ExcelProperty(value ="试用期")
private String tryPeriod;
@ExcelProperty(value ="学校")
private String school;
}
package com.yifu.cloud.plus.v1.yifu.archives.vo;
import lombok.Data;
import java.io.Serializable;
/**
* @Author hgw
* @Date 2022-10-21 09:50:08
* @Description 通用Vo
* @Version 1.0
*/
@Data
public class EmployeeInfoMsgVo implements Serializable {
private String deptId;
private String name;
private String card;
private String phone;
private String message;
}
package com.yifu.cloud.plus.v1.yifu.archives.vo;
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.format.DateTimeFormat;
import com.alibaba.excel.annotation.write.style.ColumnWidth;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttributeConstants;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.io.Serializable;
import java.time.LocalDateTime;
import java.util.Date;
/**
* 入职待建档表
*
* @author huych
* @date 2025-03-12 17:14:19
*/
@Data
@ColumnWidth(17)
public class EmployeeRegistrationPreExportVo implements Serializable {
@ExcelAttribute(name = "项目名称")
@Schema(description = "项目名称")
@ExcelProperty("项目名称")
private String deptName;
@ExcelAttribute(name = "项目编码")
@Schema(description = "项目编码")
@ExcelProperty("项目编码")
private String deptNo;
@ExcelAttribute(name = "员工姓名")
@Schema(description = "员工姓名")
@ExcelProperty("员工姓名")
private String employeeName;
@ExcelAttribute(name = "身份证号")
@Schema(description = "身份证号")
@ExcelProperty("身份证号")
private String empIdcard;
@ExcelAttribute(name = "手机号码")
@Schema(description = "手机号码")
@ExcelProperty("手机号码")
private String empPhone;
@ExcelAttribute(name = "入职日期")
@Schema(description = "入职日期")
@ExcelProperty("入职日期")
@DateTimeFormat("yyyy-MM-dd")
private Date joinLeaveDate;
@ExcelAttribute(name = "员工类型", isDataId = true, dataType = ExcelAttributeConstants.EMP_NATRUE)
@Schema(description = "员工类型")
@ExcelProperty("员工类型")
private String empNature;
@ExcelAttribute(name = "合同类型(字典值)", isDataId = true,dataType = ExcelAttributeConstants.PERSONNEL_TYPE)
@Schema(description = "合同类型(字典值)")
@ExcelProperty("合同类型")
private String contractType;
@ExcelAttribute(name = "数据来源")
@Schema(description = "数据来源")
@ExcelProperty("数据来源")
private String dataSource;
@ExcelAttribute(name = "前端客服")
@Schema(description = "前端客服")
@ExcelProperty("前端客服")
private String customerUsernameNew;
@ExcelAttribute(name = "预计收集时间", isDate = true)
@Schema(description = "预计收集时间")
@ExcelProperty("预计收集时间")
private LocalDateTime expectedCollectionTime;
@ExcelAttribute(name = "状态")
@Schema(description = "状态")
@ExcelProperty("状态")
private String processStatus;
}
package com.yifu.cloud.plus.v1.yifu.archives.vo;
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.format.DateTimeFormat;
import com.alibaba.excel.annotation.write.style.ColumnWidth;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttributeConstants;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
/**
* 入职确认信息导出
*
* @author huych
* @date 2025-03-172 15:51:36
*/
@Data
@ColumnWidth(17)
public class EmployeeRegistrationPreInfoExportVo implements Serializable {
@ExcelAttribute(name = "项目名称")
@Schema(description = "项目名称")
@ExcelProperty("项目名称")
private String deptName;
@ExcelAttribute(name = "项目编码")
@Schema(description = "项目编码")
@ExcelProperty("项目编码")
private String deptNo;
@ExcelAttribute(name = "员工姓名")
@Schema(description = "员工姓名")
@ExcelProperty("员工姓名")
private String employeeName;
@ExcelAttribute(name = "身份证号")
@Schema(description = "身份证号")
@ExcelProperty("身份证号")
private String empIdcard;
@ExcelAttribute(name = "手机号码")
@Schema(description = "手机号码")
@ExcelProperty("手机号码")
private String empPhone;
@ExcelAttribute(name = "就职岗位")
@Schema(description = "就职岗位")
@ExcelProperty("就职岗位")
private String position;
@ExcelAttribute(name = "入职日期", isDate = true)
@Schema(description = "入职日期")
@ExcelProperty("入职日期")
@DateTimeFormat("yyyy-MM-dd")
private Date joinLeaveDate;
@ExcelAttribute(name = "确认人")
@Schema(description = "确认人")
@ExcelProperty("确认人")
private String confirmUser;
@ExcelAttribute(name = "确认时间", isDate = true)
@Schema(description = "确认时间")
@ExcelProperty("确认时间")
private Date confirmTime;
@ExcelAttribute(name = "服务事项")
@Schema(description = "服务事项")
@ExcelProperty("服务事项")
private String serverItem;
@ExcelAttribute(name = "员工类型", isDataId = true, dataType = ExcelAttributeConstants.EMP_NATRUE)
@Schema(description = "员工类型")
@ExcelProperty("员工类型")
private String empNature;
@ExcelAttribute(name = "合同类型(字典值)", isDataId = true,dataType = ExcelAttributeConstants.PERSONNEL_TYPE)
@Schema(description = "合同类型(字典值)")
@ExcelProperty("合同类型")
private String contractType;
@ExcelAttribute(name = "档案所在地")
@Schema(description = "档案所在地")
@ExcelProperty("档案所在地")
private String fileAdress;
}
package com.yifu.cloud.plus.v1.yifu.archives.vo;
import com.baomidou.mybatisplus.annotation.TableField;
import com.yifu.cloud.plus.v1.yifu.archives.entity.EmployeeRegistrationPre;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.time.LocalDateTime;
import java.util.List;
/**
* 入职待建档表
*
* @author huych
* @date 2025-03-12 17:14:19
*/
@Data
public class EmployeeRegistrationPreSearchVo extends EmployeeRegistrationPre {
/**
* 多选导出或删除等操作
*/
@Schema(description = "选中ID,多个逗号分割")
private String ids;
/**
* 创建时间区间 [开始时间,结束时间]
*/
@Schema(description = "创建时间区间")
private LocalDateTime[] createTimes;
/**
* @Author fxj
* 查询数据起
**/
@Schema(description = "查询limit 开始")
private int limitStart;
/**
* @Author fxj
* 查询数据止
**/
@Schema(description = "查询limit 数据条数")
private int limitEnd;
@Schema(description = "处理状态数组")
@TableField(exist = false)
private List<String> statusList;
@Schema(description = "项目权限数组")
@TableField(exist = false)
private List<String> deptNoList;
@Schema(description = "列表类型 1 待办 2监控 3入职确认信息")
private String type;
}
package com.yifu.cloud.plus.v1.yifu.archives.vo;
import com.baomidou.mybatisplus.annotation.FieldStrategy;
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
/**
* 确认接受vo
*
* @author huych
* @date 2025-03-12 17:14:19
*/
@Data
public class EmployeeRegistrationPreVo implements Serializable {
/**
* 主键ID
*/
@Schema(description = "主键ID")
private String id;
@Schema(description = "员工类型(字典值,0外包1派遣2代理)")
private String empNature;
@Schema(description = "合同类型(字典值)")
private String contractType;
@Schema(description = "合同业务细分(字典值)")
private String contractSubName;
@Schema(description = "服务事项")
private String serverItem;
@Schema(description = "档案所在地-省")
private String fileProvince;
@Schema(description = "档案所在地-市")
private String fileCity;
@Schema(description = "档案所在地-县")
private String fileTown;
@Schema(description = "档案所在地-省编号")
private String provinceCode;
@Schema(description = "档案所在地-市编号")
private String cityCode;
@Schema(description = "档案所在地-县编号")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String townCode;
@Schema(description = "员工姓名")
private String employeeName;
@Schema(description = "身份证号")
private String empIdcard;
@Schema(description = "手机号码")
private String empPhone;
@Schema(description = "就职岗位")
private String position;
@Schema(description = "入职日期")
private Date joinLeaveDate;
@Schema(description = "推送时间")
private String pushDate;
@Schema(description = "状态,0短信待发送,1信息待填写,2信息待审核,3拒绝入职,4已完成")
private String processStatus;
@Schema(description = "前端客服")
private String customerUsername;
@Schema(description = "前端客服登录名")
private String customerUserLoginname;
@Schema(description = "项目名称")
private String deptName;
@Schema(description = "项目编码")
private String deptNo;
@Schema(description = "项目id")
private String deptId;
@Schema(description = "数据来源")
private String dataSource;
@Schema(description = "预计收集时间")
private Date expectedCollectionTime;
@Schema(description = "确认人")
private String confirmUser;
@Schema(description = "确认时间")
private Date confirmTime;
@Schema(description = "最新的客服名称")
private String customerUsernameNew;
@Schema(description = "创建人-姓名")
private String createName;
@Schema(description = "创建人")
private String createBy;
@Schema(description = "更新人")
private String updateBy;
@Schema(description = "身份证合集")
private List<String> idcardList;
}
package com.yifu.cloud.plus.v1.yifu.archives.vo;
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.format.DateTimeFormat;
import com.alibaba.excel.annotation.write.style.ColumnWidth;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttributeConstants;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
/**
* 入职待待完善
*
* @author huych
* @date 2025-03-17 15:23:19
*/
@Data
@ColumnWidth(17)
public class EmployeeRegistrationProjectListVo implements Serializable {
@ExcelAttribute(name = "项目名称")
@Schema(description = "项目名称")
@ExcelProperty("项目名称")
private String deptName;
@ExcelAttribute(name = "项目编码")
@Schema(description = "项目编码")
@ExcelProperty("项目编码")
private String deptNo;
@ExcelAttribute(name = "员工姓名")
@Schema(description = "员工姓名")
@ExcelProperty("员工姓名")
private String employeeName;
@ExcelAttribute(name = "身份证号")
@Schema(description = "身份证号")
@ExcelProperty("身份证号")
private String empIdcard;
@ExcelAttribute(name = "手机号码")
@Schema(description = "手机号码")
@ExcelProperty("手机号码")
private String empPhone;
@ExcelAttribute(name = "入职日期")
@Schema(description = "入职日期")
@ExcelProperty("入职日期")
@DateTimeFormat("yyyy-MM-dd")
private Date joinLeaveDate;
@ExcelAttribute(name = "员工类型", isDataId = true, dataType = ExcelAttributeConstants.EMP_NATRUE)
@Schema(description = "员工类型")
@ExcelProperty("员工类型")
private String empNature;
@ExcelAttribute(name = "合同类型(字典值)", isDataId = true, dataType = ExcelAttributeConstants.PERSONNEL_TYPE)
@Schema(description = "合同类型(字典值)")
@ExcelProperty("合同类型")
private String contractType;
@ExcelAttribute(name = "前端客服")
@Schema(description = "前端客服")
@ExcelProperty("前端客服")
private String customerUsernameNew;
@ExcelAttribute(name = "数据来源")
@Schema(description = "数据来源")
@ExcelProperty("数据来源")
private String dataSource;
@ExcelAttribute(name = "不完善类型")
@Schema(description = "不完善类型")
@ExcelProperty("不完善类型")
private String type;
@ExcelAttribute(name = "状态")
@Schema(description = "状态")
@ExcelProperty("状态")
private String processStatus;
@ExcelAttribute(name = "项目档案id" ,isExport = false)
@Schema(description = "项目档案id")
@ExcelProperty("项目档案id")
private String empProjectId;
@ExcelAttribute(name = "人员档案id",isExport = false)
@Schema(description = "人员档案id")
@ExcelProperty("人员档案id")
private String empInfoId;
@ExcelAttribute(name = "项目id",isExport = false)
@Schema(description = "项目id")
@ExcelProperty("项目id")
private String deptId;
}
package com.yifu.cloud.plus.v1.yifu.archives.vo;
import lombok.Data;
import java.io.Serializable;
/**
* @Author fxj
* @Date 2022/8/1
* @Description
* @Version 1.0
*/
@Data
public class MessageTempleteVo implements Serializable {
// 签名
String signName;
// 模版编号
String templeteCode;
}
package com.yifu.cloud.plus.v1.yifu.archives.vo;
import lombok.Data;
import java.io.Serializable;
/**
* @Author fxj
* @Date 2022/8/1
* @Description
* @Version 1.0
*/
@Data
public class SendMessageUpdateVo implements Serializable {
// 签名
private String id;
//项目id
private String deptId;
}
/*
* 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.yifu.cloud.plus.v1.yifu.archives.entity.SysAutoDictItem;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.time.LocalDateTime;
/**
* 字典项
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@Data
public class SysAutoDictItemSearchVo extends SysAutoDictItem{
/**
* 多选导出或删除等操作
*/
@Schema(description = "选中ID,多个逗号分割")
private String ids;
/**
* 创建时间区间 [开始时间,结束时间]
*/
@Schema(description = "创建时间区间")
private LocalDateTime[] createTimes;
/**
* @Author fxj
* 查询数据起
**/
@Schema(description = "查询limit 开始")
private int limitStart;
/**
* @Author fxj
* 查询数据止
**/
@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.vo;
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.archives.entity.SysAutoDictItem;
import com.yifu.cloud.plus.v1.yifu.common.core.vo.RowIndex;
import com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute;
import org.hibernate.validator.constraints.Length;
import javax.validation.constraints.NotBlank;
import java.io.Serializable;
import java.util.List;
/**
* 字典项
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@Data
public class SysAutoDictItemVo extends RowIndex implements Serializable {
/**
* id
*/
@TableId(type = IdType.ASSIGN_ID)
@NotBlank(message = "id 不能为空")
@ExcelAttribute(name = "id", isNotEmpty = true, errorInfo = "id 不能为空")
@Schema(description = "id")
@ExcelProperty("id")
private Long id;
/**
* 字典ID
*/
@NotBlank(message = "字典ID 不能为空")
@ExcelAttribute(name = "字典ID", isNotEmpty = true, errorInfo = "字典ID 不能为空")
@Schema(description = "字典ID")
@ExcelProperty("字典ID")
private Long dictId;
/**
* 值
*/
@Length(max = 100, message = "值 不能超过100 个字符")
@ExcelAttribute(name = "值", maxLength = 100)
@Schema(description = "值")
@ExcelProperty("值")
private String value;
/**
* 标签
*/
@Length(max = 100, message = "标签 不能超过100 个字符")
@ExcelAttribute(name = "标签", maxLength = 100)
@Schema(description = "标签")
@ExcelProperty("标签")
private String label;
/**
* 字典类型
*/
@Length(max = 100, message = "字典类型 不能超过100 个字符")
@ExcelAttribute(name = "字典类型", maxLength = 100)
@Schema(description = "字典类型")
@ExcelProperty("字典类型")
private String type;
/**
* 描述
*/
@Length(max = 100, message = "描述 不能超过100 个字符")
@ExcelAttribute(name = "描述", maxLength = 100)
@Schema(description = "描述")
@ExcelProperty("描述")
private String description;
/**
* 排序(升序)
*/
@NotBlank(message = "排序(升序) 不能为空")
@ExcelAttribute(name = "排序(升序)", isNotEmpty = true, errorInfo = "排序(升序) 不能为空")
@Schema(description = "排序(升序)")
@ExcelProperty("排序(升序)")
private Integer sortOrder;
/**
* 备注
*/
@Length(max = 255, message = "备注 不能超过255 个字符")
@ExcelAttribute(name = "备注", maxLength = 255)
@Schema(description = "备注")
@ExcelProperty("备注")
private String remark;
/**
* 删除标记
*/
@Length(max = 1, message = "删除标记 不能超过1 个字符")
@ExcelAttribute(name = "删除标记", maxLength = 1)
@Schema(description = "删除标记")
@ExcelProperty("删除标记")
private String delFlag;
/**
* 父节点ID
*/
@ExcelAttribute(name = "父节点ID")
@Schema(description = "父节点ID")
@ExcelProperty("父节点ID")
private Long parentId;
/**
* 创建人姓名
*/
@Length(max = 32, message = "创建人姓名 不能超过32 个字符")
@ExcelAttribute(name = "创建人姓名", maxLength = 32)
@Schema(description = "创建人姓名")
@ExcelProperty("创建人姓名")
private String createName;
/**
* 客户端标识
*/
@Length(max = 32, message = "客户端标识 不能超过32 个字符")
@ExcelAttribute(name = "客户端标识", maxLength = 32)
@Schema(description = "客户端标识")
@ExcelProperty("客户端标识")
private String clientId;
/**
* 是否禁用: 0 启用 1 急用
*/
@NotBlank(message = "是否禁用: 0 启用 1 急用 不能为空")
@Length(max = 1, message = "是否禁用: 0 启用 1 急用 不能超过1 个字符")
@ExcelAttribute(name = "是否禁用: 0 启用 1 急用", isNotEmpty = true, errorInfo = "是否禁用: 0 启用 1 急用 不能为空", maxLength = 1)
@Schema(description = "是否禁用: 0 启用 1 急用")
@ExcelProperty("是否禁用: 0 启用 1 急用")
private String disable;
/**
* 项目编码,标识此字典项为那个项目所有
*/
@NotBlank(message = "项目编码,标识此字典项为那个项目所有 不能为空")
@Length(max = 32, message = "项目编码,标识此字典项为那个项目所有 不能超过32 个字符")
@ExcelAttribute(name = "项目编码,标识此字典项为那个项目所有", isNotEmpty = true, errorInfo = "项目编码,标识此字典项为那个项目所有 不能为空", maxLength = 32)
@Schema(description = "项目编码,标识此字典项为那个项目所有")
@ExcelProperty("项目编码,标识此字典项为那个项目所有")
private String deptNo;
private List<SysAutoDictItem> sysAutoDictItemList;
}
/*
* 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.yifu.cloud.plus.v1.yifu.archives.entity.SysAutoDict;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.time.LocalDateTime;
/**
* 字典表
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@Data
public class SysAutoDictSearchVo extends SysAutoDict {
/**
* 多选导出或删除等操作
*/
@Schema(description = "选中ID,多个逗号分割")
private String ids;
/**
* 创建时间区间 [开始时间,结束时间]
*/
@Schema(description = "创建时间区间")
private LocalDateTime[] createTimes;
/**
* @Author fxj
* 查询数据起
**/
@Schema(description = "查询limit 开始")
private int limitStart;
/**
* @Author fxj
* 查询数据止
**/
@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.vo;
import com.alibaba.excel.annotation.ExcelProperty;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute;
import com.yifu.cloud.plus.v1.yifu.common.core.vo.RowIndex;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import org.hibernate.validator.constraints.Length;
import javax.validation.constraints.NotBlank;
import java.io.Serializable;
/**
* 字典表
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@Data
public class SysAutoDictVo extends RowIndex implements Serializable {
/**
* id
*/
@TableId(type = IdType.ASSIGN_ID)
@NotBlank(message = "id 不能为空")
@ExcelAttribute(name = "id", isNotEmpty = true, errorInfo = "id 不能为空")
@Schema(description = "id")
@ExcelProperty("id")
private Long id;
/**
* 字典编码
*/
@Length(max = 100, message = "字典编码 不能超过100 个字符")
@ExcelAttribute(name = "字典编码", maxLength = 100)
@Schema(description = "字典编码")
@ExcelProperty("字典编码")
private String type;
/**
* 字典名称
*/
@Length(max = 100, message = "字典名称 不能超过100 个字符")
@ExcelAttribute(name = "字典名称", maxLength = 100)
@Schema(description = "字典名称")
@ExcelProperty("字典名称")
private String description;
/**
* 备注
*/
@Length(max = 255, message = "备注 不能超过255 个字符")
@ExcelAttribute(name = "备注", maxLength = 255)
@Schema(description = "备注")
@ExcelProperty("备注")
private String remark;
/**
* 是否是系统内置
*/
@Length(max = 1, message = "是否是系统内置 不能超过1 个字符")
@ExcelAttribute(name = "是否是系统内置", maxLength = 1)
@Schema(description = "是否是系统内置")
@ExcelProperty("是否是系统内置")
private String systemFlag;
/**
* 删除标记
*/
@Length(max = 1, message = "删除标记 不能超过1 个字符")
@ExcelAttribute(name = "删除标记", maxLength = 1)
@Schema(description = "删除标记")
@ExcelProperty("删除标记")
private String delFlag;
/**
* 联动上级类型
*/
@Length(max = 32, message = "联动上级类型 不能超过32 个字符")
@ExcelAttribute(name = "联动上级类型", maxLength = 32)
@Schema(description = "联动上级类型")
@ExcelProperty("联动上级类型")
private String parentItemType;
/**
* 创建人姓名
*/
@Length(max = 32, message = "创建人姓名 不能超过32 个字符")
@ExcelAttribute(name = "创建人姓名", maxLength = 32)
@Schema(description = "创建人姓名")
@ExcelProperty("创建人姓名")
private String createName;
/**
* 客户端标识
*/
@Length(max = 32, message = "客户端标识 不能超过32 个字符")
@ExcelAttribute(name = "客户端标识", maxLength = 32)
@Schema(description = "客户端标识")
@ExcelProperty("客户端标识")
private String clientId;
}
/*
* 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.yifu.cloud.plus.v1.yifu.archives.entity.TAutoEmpRuleInfo;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.time.LocalDateTime;
/**
* 档案管理规则配置表
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@Data
public class TAutoEmpRuleInfoSearchVo extends TAutoEmpRuleInfo {
/**
* 多选导出或删除等操作
*/
@Schema(description = "选中ID,多个逗号分割")
private String ids;
/**
* 创建时间区间 [开始时间,结束时间]
*/
@Schema(description = "创建时间区间")
private LocalDateTime[] createTimes;
/**
* @Author fxj
* 查询数据起
**/
@Schema(description = "查询limit 开始")
private int limitStart;
/**
* @Author fxj
* 查询数据止
**/
@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.vo;
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.vo.RowIndex;
import com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute;
import org.hibernate.validator.constraints.Length;
import javax.validation.constraints.NotBlank;
import java.io.Serializable;
import java.util.Date;
/**
* 档案管理规则配置表
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@Data
public class TAutoEmpRuleInfoVo extends RowIndex implements Serializable {
/**
* 主键
*/
@TableId(type = IdType.ASSIGN_ID)
@NotBlank(message = "主键 不能为空")
@Length(max = 32, message = "主键 不能超过32 个字符")
@ExcelAttribute(name = "主键", isNotEmpty = true, errorInfo = "主键 不能为空", maxLength = 32)
@Schema(description = "主键")
@ExcelProperty("主键")
private String id;
/**
* 是否启用自动化:0是 1否
*/
@NotBlank(message = "是否启用自动化:0是 1否 不能为空")
@Length(max = 1, message = "是否启用自动化:0是 1否 不能超过1 个字符")
@ExcelAttribute(name = "是否启用自动化:0是 1否", isNotEmpty = true, errorInfo = "是否启用自动化:0是 1否 不能为空", maxLength = 1)
@Schema(description = "是否启用自动化:0是 1否")
@ExcelProperty("是否启用自动化:0是 1否")
private String autoFlag;
/**
* 收集方案:0自动1 手动
*/
@NotBlank(message = "收集方案:0自动1 手动 不能为空")
@Length(max = 1, message = "收集方案:0自动1 手动 不能超过1 个字符")
@ExcelAttribute(name = "收集方案:0自动1 手动", isNotEmpty = true, errorInfo = "收集方案:0自动1 手动 不能为空", maxLength = 1)
@Schema(description = "收集方案:0自动1 手动")
@ExcelProperty("收集方案:0自动1 手动")
private String collectType;
/**
* 推送时间
*/
@NotBlank(message = "推送时间 不能为空")
@ExcelAttribute(name = "推送时间", isNotEmpty = true, errorInfo = "推送时间 不能为空", isDate = true)
@Schema(description = "推送时间")
@ExcelProperty("推送时间")
private Date pushDate;
/**
* 员工类型
*/
@Length(max = 2, message = "员工类型 不能超过2 个字符")
@ExcelAttribute(name = "员工类型", maxLength = 2)
@Schema(description = "员工类型")
@ExcelProperty("员工类型")
private String empType;
/**
* 档案所在地-省
*/
@Length(max = 10, message = "档案所在地-省 不能超过10 个字符")
@ExcelAttribute(name = "档案所在地-省", maxLength = 10)
@Schema(description = "档案所在地-省")
@ExcelProperty("档案所在地-省")
private String empProvince;
/**
* 档案所在地-市
*/
@Length(max = 10, message = "档案所在地-市 不能超过10 个字符")
@ExcelAttribute(name = "档案所在地-市", maxLength = 10)
@Schema(description = "档案所在地-市")
@ExcelProperty("档案所在地-市")
private String empCity;
/**
* 档案所在地-县/区
*/
@Length(max = 10, message = "档案所在地-县/区 不能超过10 个字符")
@ExcelAttribute(name = "档案所在地-县/区", maxLength = 10)
@Schema(description = "档案所在地-县/区")
@ExcelProperty("档案所在地-县/区")
private String empTown;
/**
* 合同类型
*/
@Length(max = 10, message = "合同类型 不能超过10 个字符")
@ExcelAttribute(name = "合同类型", maxLength = 10)
@Schema(description = "合同类型")
@ExcelProperty("合同类型")
private String contractType;
/**
* 业务细分(同合的业务细分)
*/
@NotBlank(message = "业务细分(同合的业务细分) 不能为空")
@Length(max = 32, message = "业务细分(同合的业务细分) 不能超过32 个字符")
@ExcelAttribute(name = "业务细分(同合的业务细分)", isNotEmpty = true, errorInfo = "业务细分(同合的业务细分) 不能为空", maxLength = 32)
@Schema(description = "业务细分(同合的业务细分)")
@ExcelProperty("业务细分(同合的业务细分)")
private String businessTypeSub;
/**
* 默认信息是否允许修改
*/
@NotBlank(message = "默认信息是否允许修改 不能为空")
@Length(max = 1, message = "默认信息是否允许修改 不能超过1 个字符")
@ExcelAttribute(name = "默认信息是否允许修改", isNotEmpty = true, errorInfo = "默认信息是否允许修改 不能为空", maxLength = 1)
@Schema(description = "默认信息是否允许修改")
@ExcelProperty("默认信息是否允许修改")
private String updateFlag;
/**
* 项目编码
*/
@NotBlank(message = "项目编码 不能为空")
@Length(max = 50, message = "项目编码 不能超过50 个字符")
@ExcelAttribute(name = "项目编码", isNotEmpty = true, errorInfo = "项目编码 不能为空", maxLength = 50)
@Schema(description = "项目编码")
@ExcelProperty("项目编码")
private String projectNo;
/**
* 项目ID
*/
@NotBlank(message = "项目ID 不能为空")
@Length(max = 32, message = "项目ID 不能超过32 个字符")
@ExcelAttribute(name = "项目ID", isNotEmpty = true, errorInfo = "项目ID 不能为空", maxLength = 32)
@Schema(description = "项目ID")
@ExcelProperty("项目ID")
private String projectId;
/**
* 项目配置主表ID
*/
@NotBlank(message = "项目配置主表ID 不能为空")
@Length(max = 32, message = "项目配置主表ID 不能超过32 个字符")
@ExcelAttribute(name = "项目配置主表ID", isNotEmpty = true, errorInfo = "项目配置主表ID 不能为空", maxLength = 32)
@Schema(description = "项目配置主表ID")
@ExcelProperty("项目配置主表ID")
private String mainId;
}
/*
* 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.yifu.cloud.plus.v1.yifu.archives.entity.SysAutoDictItem;
import com.yifu.cloud.plus.v1.yifu.archives.entity.TAutoEmpRuleInfo;
import com.yifu.cloud.plus.v1.yifu.archives.entity.TAutoMainRel;
import com.yifu.cloud.plus.v1.yifu.archives.entity.TAutoRuleLog;
import lombok.Data;
import java.io.Serializable;
import java.util.List;
/**
* 项目配置表主表--详情
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@Data
public class TAutoMainRelAddVo implements Serializable {
//项目配置主表
private TAutoMainRel autoMainRel;
//档案管理规则配置表
private TAutoEmpRuleInfo autoEmpRuleInfo;
//岗位信息表
private List<SysAutoDictItem> autoDictItems;
}
/*
* 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.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.yifu.cloud.plus.v1.yifu.archives.entity.SysAutoDictItem;
import com.yifu.cloud.plus.v1.yifu.archives.entity.TAutoEmpRuleInfo;
import com.yifu.cloud.plus.v1.yifu.archives.entity.TAutoMainRel;
import com.yifu.cloud.plus.v1.yifu.archives.entity.TAutoRuleLog;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute;
import com.yifu.cloud.plus.v1.yifu.common.core.vo.RowIndex;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import org.hibernate.validator.constraints.Length;
import javax.validation.constraints.NotBlank;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
/**
* 项目配置表主表--详情
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@Data
public class TAutoMainRelDetailVo implements Serializable {
//项目配置主表
private TAutoMainRel autoMainRel;
//档案管理规则配置表
private TAutoEmpRuleInfo autoEmpRuleInfo;
//项目配置日志表
private List<TAutoRuleLog> autoRuleLogs;
//岗位信息表
private List<SysAutoDictItem> autoDictItems;
//项目信息表
private TSettleDomainSelectVo settleDomainVo;
}
/*
* 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.alibaba.excel.annotation.write.style.HeadStyle;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute;
import com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.hibernate.validator.constraints.Length;
import javax.validation.constraints.NotBlank;
import java.io.Serializable;
import java.util.Date;
/**
* 项目配置表主表
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@Data
@ColumnWidth(30)
@Schema(description = "项目配置表主表")
public class TAutoMainRelExportVo implements Serializable {
/**
* 项目名称
*/
@HeadFontStyle(fontHeightInPoints = 11)
@Schema(description = "项目名称")
@ExcelProperty("项目名称")
private String departName;
/**
* 项目编码
*/
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty("项目编码")
@Schema(description = "项目编码")
private String deptNo;
/**
* 服务状态:0正常 1停止服务 2冻结 (是否使用:0是 非0否)
*/
@HeadFontStyle(fontHeightInPoints = 11)
@Schema(description = "服务状态:0正常 1停止服务 2冻结")
@ExcelProperty("是否可用")
private String stopFlag;
/**
* 前端客服
*/
@HeadFontStyle(fontHeightInPoints = 11)
@Schema(description = "前端客服")
@ExcelProperty("前端客服")
private String csUserName;
/**
* 最新更新时间
*/
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty("最新更新时间")
@Schema(description = "最新更新时间")
private Date ruleUpdateTime;
/**
* 规则最新更新人
*/
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty("最新更新操作人")
@Schema(description = "规则最新更新人")
private String ruleUpdatePerson;
}
/*
* 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.yifu.cloud.plus.v1.yifu.archives.entity.TAutoMainRel;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.time.LocalDateTime;
/**
* 项目配置表主表
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@Data
public class TAutoMainRelSearchVo extends TAutoMainRel {
/**
* 多选导出或删除等操作
*/
@Schema(description = "选中ID,多个逗号分割")
private String ids;
/**
* 创建时间区间 [开始时间,结束时间]
*/
@Schema(description = "创建时间区间")
private LocalDateTime[] createTimes;
/**
* @Author fxj
* 查询数据起
**/
@Schema(description = "查询limit 开始")
private int limitStart;
/**
* @Author fxj
* 查询数据止
**/
@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.vo;
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.vo.RowIndex;
import com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute;
import org.hibernate.validator.constraints.Length;
import javax.validation.constraints.NotBlank;
import java.io.Serializable;
import java.util.Date;
/**
* 项目配置表主表
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@Data
public class TAutoMainRelVo extends RowIndex implements Serializable {
/**
* id
*/
@TableId(type = IdType.ASSIGN_ID)
@NotBlank(message = "id 不能为空")
@Length(max = 32, message = "id 不能超过32 个字符")
@ExcelAttribute(name = "id", isNotEmpty = true, errorInfo = "id 不能为空", maxLength = 32)
@Schema(description = "id")
@ExcelProperty("id")
private String id;
/**
* 项目编码
*/
@NotBlank(message = "项目编码 不能为空")
@Length(max = 50, message = "项目编码 不能超过50 个字符")
@ExcelAttribute(name = "项目编码", isNotEmpty = true, errorInfo = "项目编码 不能为空", maxLength = 50)
@Schema(description = "项目编码")
@ExcelProperty("项目编码")
private String projectNo;
/**
* 项目ID
*/
@NotBlank(message = "项目ID 不能为空")
@Length(max = 32, message = "项目ID 不能超过32 个字符")
@ExcelAttribute(name = "项目ID", isNotEmpty = true, errorInfo = "项目ID 不能为空", maxLength = 32)
@Schema(description = "项目ID")
@ExcelProperty("项目ID")
private String projectId;
/**
* 规则最新更新时间
*/
@ExcelAttribute(name = "规则最新更新时间", isDate = true)
@Schema(description = "规则最新更新时间")
@ExcelProperty("规则最新更新时间")
private Date ruleUpdateTime;
/**
* 规则最新更新人
*/
@Length(max = 50, message = "规则最新更新人 不能超过50 个字符")
@ExcelAttribute(name = "规则最新更新人", maxLength = 50)
@Schema(description = "规则最新更新人")
@ExcelProperty("规则最新更新人")
private String ruleUpdatePerson;
}
/*
* 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.yifu.cloud.plus.v1.yifu.archives.entity.TAutoRuleLog;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.time.LocalDateTime;
/**
* 规则变更日志表
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@Data
public class TAutoRuleLogSearchVo extends TAutoRuleLog {
/**
* 多选导出或删除等操作
*/
@Schema(description = "选中ID,多个逗号分割")
private String ids;
/**
* 创建时间区间 [开始时间,结束时间]
*/
@Schema(description = "创建时间区间")
private LocalDateTime[] createTimes;
/**
* @Author fxj
* 查询数据起
**/
@Schema(description = "查询limit 开始")
private int limitStart;
/**
* @Author fxj
* 查询数据止
**/
@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.vo;
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.vo.RowIndex;
import com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute;
import org.hibernate.validator.constraints.Length;
import javax.validation.constraints.NotBlank;
import java.io.Serializable;
/**
* 规则变更日志表
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@Data
public class TAutoRuleLogVo extends RowIndex implements Serializable {
/**
* id
*/
@TableId(type = IdType.ASSIGN_ID)
@NotBlank(message = "id 不能为空")
@Length(max = 32, message = "id 不能超过32 个字符")
@ExcelAttribute(name = "id", isNotEmpty = true, errorInfo = "id 不能为空", maxLength = 32)
@Schema(description = "id")
@ExcelProperty("id")
private String id;
/**
* 类型:0项目规则
*/
@ExcelAttribute(name = "类型:0项目规则")
@Schema(description = "类型:0项目规则")
@ExcelProperty("类型:0项目规则")
private Integer type;
/**
* 规则配置主表ID
*/
@NotBlank(message = "规则配置主表ID 不能为空")
@Length(max = 32, message = "规则配置主表ID 不能超过32 个字符")
@ExcelAttribute(name = "规则配置主表ID", isNotEmpty = true, errorInfo = "规则配置主表ID 不能为空", maxLength = 32)
@Schema(description = "规则配置主表ID")
@ExcelProperty("规则配置主表ID")
private String mainId;
/**
* 原来的信息
*/
@NotBlank(message = "原来的信息 不能为空")
@ExcelAttribute(name = "原来的信息", isNotEmpty = true, errorInfo = "原来的信息 不能为空")
@Schema(description = "原来的信息")
@ExcelProperty("原来的信息")
private String oldInfo;
/**
* 新的信息
*/
@NotBlank(message = "新的信息 不能为空")
@ExcelAttribute(name = "新的信息", isNotEmpty = true, errorInfo = "新的信息 不能为空")
@Schema(description = "新的信息")
@ExcelProperty("新的信息")
private String newInfo;
/**
* 差异的信息(属性名称,逗号隔开)
*/
@ExcelAttribute(name = "差异的信息(属性名称,逗号隔开)")
@Schema(description = "差异的信息(属性名称,逗号隔开)")
@ExcelProperty("差异的信息(属性名称,逗号隔开)")
private String differenceInfo;
}
package com.yifu.cloud.plus.v1.yifu.archives.vo;
import lombok.Data;
import java.util.List;
@Data
public class TSettleDomainRegistListVo {
/**
* 合同主体项目编码
*/
private List<String> deptNos;
}
package com.yifu.cloud.plus.v1.yifu.archives.config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.TaskScheduler;
import org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler;
@Configuration
public class TaskSchedulerConfig {
@Bean
public TaskScheduler taskScheduler() {
ThreadPoolTaskScheduler scheduler = new ThreadPoolTaskScheduler();
scheduler.setPoolSize(10);
scheduler.setThreadNamePrefix("scheduled-task-");
scheduler.initialize();
return scheduler;
}
}
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.EmployeeRegistrationPre;
import com.yifu.cloud.plus.v1.yifu.archives.service.EmployeeRegistrationPreService;
import com.yifu.cloud.plus.v1.yifu.archives.vo.EmployeeInfoMsgVo;
import com.yifu.cloud.plus.v1.yifu.archives.vo.EmployeeRegistrationPreSearchVo;
import com.yifu.cloud.plus.v1.yifu.archives.vo.EmployeeRegistrationPreVo;
import com.yifu.cloud.plus.v1.yifu.archives.vo.SendMessageUpdateVo;
import com.yifu.cloud.plus.v1.yifu.common.core.util.R;
import com.yifu.cloud.plus.v1.yifu.common.core.vo.YifuUser;
import com.yifu.cloud.plus.v1.yifu.common.dapr.util.MenuUtil;
import com.yifu.cloud.plus.v1.yifu.common.log.annotation.SysLog;
import com.yifu.cloud.plus.v1.yifu.common.security.annotation.Inner;
import com.yifu.cloud.plus.v1.yifu.common.security.util.SecurityUtils;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.RequiredArgsConstructor;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletResponse;
import java.util.List;
/**
* 入职待建档表
*
* @author huych
* @date 2025-03-12 17:14:19
*/
@RestController
@RequiredArgsConstructor
@RequestMapping("/employeeregistrationpre" )
@Tag(name = "入职待建档表管理")
public class EmployeeRegistrationPreController {
private final EmployeeRegistrationPreService employeeRegistrationPreService;
private final MenuUtil menuUtil;
/**
* 简单分页查询
* @param page 分页对象
* @param employeeRegistrationPre 入职待建档表
* @return
*/
@Operation(description = "简单分页查询")
@GetMapping("/page")
public R<IPage<EmployeeRegistrationPre>> getEmployeeRegistrationPrePage(Page<EmployeeRegistrationPre> page, EmployeeRegistrationPreSearchVo employeeRegistrationPre) {
YifuUser user = SecurityUtils.getUser();
menuUtil.setAuthSql(user, employeeRegistrationPre);
return new R<>(employeeRegistrationPreService.getEmployeeRegistrationPrePage(page,employeeRegistrationPre));
}
/**
* 通过id查询入职待建档表
* @param id id
* @return R
*/
@Operation(summary = "通过id查询", description = "通过id查询")
@GetMapping("/{id}" )
public R<EmployeeRegistrationPre> getById(@PathVariable("id" ) String id) {
return R.ok(employeeRegistrationPreService.getById(id));
}
/**
* 新增入职待建档表
* @param employeeRegistrationPre 入职待建档表
* @return R
*/
@Operation(summary = "新增入职待建档表", description = "新增入职待建档表")
@SysLog("新增入职待建档表" )
@PostMapping
public R<Boolean> save(@RequestBody EmployeeRegistrationPre employeeRegistrationPre) {
return R.ok(employeeRegistrationPreService.save(employeeRegistrationPre));
}
/**
* 修改入职待建档表
* @param employeeRegistrationPre 入职待建档表
* @return R
*/
@Operation(summary = "修改入职待建档表", description = "修改入职待建档表")
@SysLog("修改入职待建档表" )
@PostMapping("/updateById")
public R updateById(@RequestBody EmployeeRegistrationPre employeeRegistrationPre) {
return employeeRegistrationPreService.updateRegistById(employeeRegistrationPre);
}
/**
* 入职待建档表 批量导出
* @author huych
* @date 2025-03-12 17:14:19
**/
@Operation(description = "导出入职待建档表")
@PostMapping("/export")
public void export(HttpServletResponse response, @RequestBody EmployeeRegistrationPreSearchVo searchVo) {
YifuUser user = SecurityUtils.getUser();
menuUtil.setAuthSql(user, searchVo);
employeeRegistrationPreService.listExport(response,searchVo);
}
/**
* 入职确认信息 批量导出
* @author huych
* @date 2025-03-17 16:26:26
**/
@Operation(description = "导出入职确认信息")
@PostMapping("/confirmExport")
public void confirmExport(HttpServletResponse response, @RequestBody EmployeeRegistrationPreSearchVo searchVo) {
YifuUser user = SecurityUtils.getUser();
menuUtil.setAuthSql(user, searchVo);
employeeRegistrationPreService.confirmExport(response,searchVo);
}
/**
* @Author huyc
* @Description 新增入职待建档信息
* @Date 14:34 2025/3/14
**/
@Inner
@PostMapping("/inner/saveRegistPreInfo")
public Boolean saveRegistPreInfo(@RequestBody EmployeeRegistrationPreVo preVo) {
return employeeRegistrationPreService.saveRegistPreInfo(preVo);
}
/**
* 入职确认信息信息修改
* @param employeeRegistrationPre 入职确认信息
* @return R
*/
@Operation(summary = "入职确认信息信息修改", description = "入职确认信息信息修改")
@SysLog("修改入职待建档表" )
@PostMapping("/updateCommonInfo")
public R updateCommonInfo(@RequestBody EmployeeRegistrationPre employeeRegistrationPre) {
return employeeRegistrationPreService.updateCommonInfo(employeeRegistrationPre);
}
/**
* 入职确认信息信息修改
* @param searchVo type 查询类型 1待办列表 2 监控列表
* @return R
*/
@Operation(summary = "查询各个tab页签的入职待办条数", description = "查询各个tab页签的入职待办条数")
@SysLog("查询各个tab页签的入职待办条数" )
@PostMapping("/getListCount")
public R getListCount(@RequestBody EmployeeRegistrationPreSearchVo searchVo) {
return employeeRegistrationPreService.getListCount(searchVo);
}
/**
* 入职待建档入职审核
* @param employeeRegistrationPre 入职待建档表
* @return R
*/
@Operation(summary = "入职待建档入职审核", description = "入职待建档入职审核")
@SysLog("入职待建档入职审核" )
@PostMapping("/registrationPreAudit")
public R registrationPreAudit(@RequestBody EmployeeRegistrationPre employeeRegistrationPre) {
return employeeRegistrationPreService.registrationPreAudit(employeeRegistrationPre);
}
/**
* 批量发送入职信息收集短信
* @param vo vo
* @return R
*/
@Operation(summary = "批量发送入职信息收集短信", description = "批量发送入职信息收集短信")
@SysLog("批量发送入职信息收集短信" )
@PostMapping("/batchSms")
public R batchSendMessage(@RequestBody List<SendMessageUpdateVo> vo,@RequestParam String type) {
return employeeRegistrationPreService.batchSendMessage(vo, type);
}
/**
* @Description: 判断简档详档(员工类型:代理的是简档,“非代理”且员工合同类型为:空、标准合同、劳务派遣合同、补贴合同 是详档,其余为简档)
* @Author: hgw
* @Date: 2025/3/20 15:24
* @return: com.yifu.cloud.plus.v1.yifu.common.core.util.R<java.lang.String>
**/
@Operation(summary = "判断简档详档", description = "判断简档详档")
@SysLog("判断简档详档" )
@GetMapping("/judgeIsSimple")
public R<String> judgeIsSimple(@RequestParam String empIdCard, @RequestParam String deptId) {
return R.ok(employeeRegistrationPreService.judgeIsSimple(empIdCard, deptId));
}
/**
* 查询身份信息
*
* @author huych
* @date 2025-03-13 16:55:32
**/
@Operation(summary = "查询身份信息")
@SysLog("查询身份信息")
@GetMapping("/getEmployeeInfo")
public R<EmployeeInfoMsgVo> getEmployeeInfo(@RequestParam String id) {
return employeeRegistrationPreService.getEmployeeInfo(id);
}
}
/*
* 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.SysAutoDict;
import com.yifu.cloud.plus.v1.yifu.archives.service.SysAutoDictService;
import com.yifu.cloud.plus.v1.yifu.archives.vo.SysAutoDictSearchVo;
import com.yifu.cloud.plus.v1.yifu.common.core.util.ErrorMessage;
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 lombok.SneakyThrows;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
import javax.servlet.http.HttpServletResponse;
import java.util.List;
/**
* 字典表
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@RestController
@RequiredArgsConstructor
@RequestMapping("/sysautodict" )
@Tag(name = "字典表管理")
public class SysAutoDictController {
private final SysAutoDictService sysAutoDictService;
/**
* 简单分页查询
* @param page 分页对象
* @param sysAutoDict 字典表
* @return
*/
@Operation(description = "简单分页查询")
@GetMapping("/page")
public R<IPage<SysAutoDict>> getSysAutoDictPage(Page<SysAutoDict> page, SysAutoDictSearchVo sysAutoDict) {
return new R<>(sysAutoDictService.getSysAutoDictPage(page,sysAutoDict));
}
/**
* 不分页查询
* @param sysAutoDict 字典表
* @return
*/
@Operation(summary = "不分页查询", description = "不分页查询")
@PostMapping("/noPage" )
//@PreAuthorize("@pms.hasPermission('demo_sysautodict_get')" )
public R<List<SysAutoDict>> getSysAutoDictNoPage(@RequestBody SysAutoDictSearchVo sysAutoDict) {
return R.ok(sysAutoDictService.noPageDiy(sysAutoDict));
}
/**
* 通过id查询字典表
* @param id id
* @return R
*/
@Operation(summary = "通过id查询", description = "通过id查询:hasPermission('demo_sysautodict_get')")
@GetMapping("/{id}" )
@PreAuthorize("@pms.hasPermission('demo_sysautodict_get')" )
public R<SysAutoDict> getById(@PathVariable("id" ) Long id) {
return R.ok(sysAutoDictService.getById(id));
}
/**
* 新增字典表
* @param sysAutoDict 字典表
* @return R
*/
@Operation(summary = "新增字典表", description = "新增字典表:hasPermission('demo_sysautodict_add')")
@SysLog("新增字典表" )
@PostMapping
@PreAuthorize("@pms.hasPermission('demo_sysautodict_add')" )
public R<Boolean> save(@RequestBody SysAutoDict sysAutoDict) {
return R.ok(sysAutoDictService.save(sysAutoDict));
}
/**
* 修改字典表
* @param sysAutoDict 字典表
* @return R
*/
@Operation(summary = "修改字典表", description = "修改字典表:hasPermission('demo_sysautodict_edit')")
@SysLog("修改字典表" )
@PutMapping
@PreAuthorize("@pms.hasPermission('demo_sysautodict_edit')" )
public R<Boolean> updateById(@RequestBody SysAutoDict sysAutoDict) {
return R.ok(sysAutoDictService.updateById(sysAutoDict));
}
/**
* 通过id删除字典表
* @param id id
* @return R
*/
@Operation(summary = "通过id删除字典表", description = "通过id删除字典表:hasPermission('demo_sysautodict_del')")
@SysLog("通过id删除字典表" )
@DeleteMapping("/{id}" )
@PreAuthorize("@pms.hasPermission('demo_sysautodict_del')" )
public R<Boolean> removeById(@PathVariable Long id) {
return R.ok(sysAutoDictService.removeById(id));
}
/**
* 字典表 批量导入
*
* @author fxj
* @date 2025-03-13 15:15:26
**/
@SneakyThrows
@Operation(description = "批量新增字典表 hasPermission('demo_sysautodict-batch-import')")
@SysLog("批量新增字典表")
@PostMapping("/importListAdd")
@PreAuthorize("@pms.hasPermission('demo_sysautodict-batch-import')")
public R<List<ErrorMessage>> importListAdd(@RequestBody MultipartFile file){
return sysAutoDictService.importDiy(file.getInputStream());
}
/**
* 字典表 批量导出
* @author fxj
* @date 2025-03-13 15:15:26
**/
@Operation(description = "导出字典表 hasPermission('demo_sysautodict-export')")
@PostMapping("/export")
@PreAuthorize("@pms.hasPermission('demo_sysautodict-export')")
public void export(HttpServletResponse response, @RequestBody SysAutoDictSearchVo searchVo) {
sysAutoDictService.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.controller;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.yifu.cloud.plus.v1.yifu.archives.entity.SysAutoDictItem;
import com.yifu.cloud.plus.v1.yifu.archives.service.SysAutoDictItemService;
import com.yifu.cloud.plus.v1.yifu.archives.vo.SysAutoDictItemSearchVo;
import com.yifu.cloud.plus.v1.yifu.archives.vo.SysAutoDictItemVo;
import com.yifu.cloud.plus.v1.yifu.archives.vo.TSettleDomainSelectVo;
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.ErrorMessage;
import com.yifu.cloud.plus.v1.yifu.common.core.util.R;
import com.yifu.cloud.plus.v1.yifu.common.log.annotation.SysLog;
import com.yifu.cloud.plus.v1.yifu.common.security.annotation.Inner;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.RequiredArgsConstructor;
import lombok.SneakyThrows;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
import javax.servlet.http.HttpServletResponse;
import java.util.List;
/**
* 字典项
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@RestController
@RequiredArgsConstructor
@RequestMapping("/sysautodictitem" )
@Tag(name = "字典项管理")
public class SysAutoDictItemController {
private final SysAutoDictItemService sysAutoDictItemService;
/**
* 简单分页查询
* @param page 分页对象
* @param sysAutoDictItem 字典项
* @return
*/
@Operation(description = "简单分页查询")
@GetMapping("/page")
public R<IPage<SysAutoDictItem>> getSysAutoDictItemPage(Page<SysAutoDictItem> page, SysAutoDictItemSearchVo sysAutoDictItem) {
return new R<>(sysAutoDictItemService.getSysAutoDictItemPage(page,sysAutoDictItem));
}
/**
* 不分页查询
* @param sysAutoDictItem 字典项
* @return
*/
@Operation(summary = "不分页查询", description = "不分页查询")
@PostMapping("/noPage" )
//@PreAuthorize("@pms.hasPermission('demo_sysautodictitem_get')" )
public R<List<SysAutoDictItem>> getSysAutoDictItemNoPage(@RequestBody SysAutoDictItemSearchVo sysAutoDictItem) {
return R.ok(sysAutoDictItemService.noPageDiy(sysAutoDictItem));
}
/**
* 通过id查询字典项
* @param id id
* @return R
*/
@Operation(summary = "通过id查询", description = "通过id查询:hasPermission('demo_sysautodictitem_get')")
@GetMapping("/{id}" )
@PreAuthorize("@pms.hasPermission('demo_sysautodictitem_get')" )
public R<SysAutoDictItem> getById(@PathVariable("id" ) Long id) {
return R.ok(sysAutoDictItemService.getById(id));
}
/**
* 新增字典项
* @param sysAutoDictItem 字典项
* @return R
*/
@Operation(summary = "新增字典项", description = "新增字典项:hasPermission('demo_sysautodictitem_add')")
@SysLog("新增字典项" )
@PostMapping
@PreAuthorize("@pms.hasPermission('demo_sysautodictitem_add')" )
public R<Boolean> save(@RequestBody SysAutoDictItem sysAutoDictItem) {
return R.ok(sysAutoDictItemService.save(sysAutoDictItem));
}
/**
* 修改字典项
* @param sysAutoDictItem 字典项
* @return R
*/
@Operation(summary = "修改字典项", description = "修改字典项:hasPermission('demo_sysautodictitem_edit')")
@SysLog("修改字典项" )
@PutMapping
@PreAuthorize("@pms.hasPermission('demo_sysautodictitem_edit')" )
public R<Boolean> updateById(@RequestBody SysAutoDictItem sysAutoDictItem) {
return R.ok(sysAutoDictItemService.updateById(sysAutoDictItem));
}
/**
* 通过id删除字典项
* @param id id
* @return R
*/
@Operation(summary = "通过id删除字典项", description = "通过id删除字典项:hasPermission('demo_sysautodictitem_del')")
@SysLog("通过id删除字典项" )
@DeleteMapping("/{id}" )
@PreAuthorize("@pms.hasPermission('demo_sysautodictitem_del')" )
public R<Boolean> removeById(@PathVariable Long id) {
return R.ok(sysAutoDictItemService.removeById(id));
}
/**
* 字典项 批量导入
*
* @author fxj
* @date 2025-03-13 15:15:26
**/
@SneakyThrows
@Operation(description = "批量新增字典项 hasPermission('demo_sysautodictitem-batch-import')")
@SysLog("批量新增字典项")
@PostMapping("/importListAdd")
@PreAuthorize("@pms.hasPermission('demo_sysautodictitem-batch-import')")
public R<List<ErrorMessage>> importListAdd(@RequestBody MultipartFile file){
return sysAutoDictItemService.importDiy(file.getInputStream());
}
/**
* 字典项 批量导出
* @author fxj
* @date 2025-03-13 15:15:26
**/
@Operation(description = "导出字典项 hasPermission('demo_sysautodictitem-export')")
@PostMapping("/export")
@PreAuthorize("@pms.hasPermission('demo_sysautodictitem-export')")
public void export(HttpServletResponse response, @RequestBody SysAutoDictItemSearchVo searchVo) {
sysAutoDictItemService.listExport(response,searchVo);
}
/**
* 获取项目配置下的字典列表
* @param sysAutoDictItem 字典项
* @return R<List<SysAutoDictItem>>
* @author chenyuxi
*/
@Operation(summary = "获取项目配置下的字典列表")
@GetMapping("/selectByDeptNo" )
public R<List<SysAutoDictItem>> selectByDeptNo(SysAutoDictItemSearchVo sysAutoDictItem) {
if(Common.isEmpty(sysAutoDictItem.getDeptNo())){
return R.failed("项目编号不能为空");
}
return R.ok(sysAutoDictItemService.selectByDeptNo(sysAutoDictItem));
}
@Inner
@PostMapping("/getSettleDomainSelectVoById")
public SysAutoDictItemVo getInnerSettleDomainSelectVoByUserId(@RequestBody SysAutoDictItemVo dictItemVo) {
SysAutoDictItemVo settleDomainSelectVo = new SysAutoDictItemVo();
LambdaQueryWrapper<SysAutoDictItem> dictQuery = Wrappers.<SysAutoDictItem>lambdaQuery()
.eq(SysAutoDictItem::getDeptNo, dictItemVo.getDeptNo())
.eq(SysAutoDictItem::getDisable, CommonConstants.ZERO_STRING)
.eq(SysAutoDictItem::getDelFlag, CommonConstants.NOT_DELETE_FLAG);
List<SysAutoDictItem> list = sysAutoDictItemService.list(dictQuery);
settleDomainSelectVo.setSysAutoDictItemList(list);
return settleDomainSelectVo;
}
}
/*
* 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.TAutoEmpRuleInfo;
import com.yifu.cloud.plus.v1.yifu.archives.service.TAutoEmpRuleInfoService;
import com.yifu.cloud.plus.v1.yifu.archives.vo.TAutoEmpRuleInfoSearchVo;
import com.yifu.cloud.plus.v1.yifu.common.core.util.ErrorMessage;
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 lombok.SneakyThrows;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
import javax.servlet.http.HttpServletResponse;
import java.util.List;
/**
* 档案管理规则配置表
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@RestController
@RequiredArgsConstructor
@RequestMapping("/tautoempruleinfo" )
@Tag(name = "档案管理规则配置表管理")
public class TAutoEmpRuleInfoController {
private final TAutoEmpRuleInfoService tAutoEmpRuleInfoService;
/**
* 简单分页查询
* @param page 分页对象
* @param tAutoEmpRuleInfo 档案管理规则配置表
* @return
*/
@Operation(description = "简单分页查询")
@GetMapping("/page")
public R<IPage<TAutoEmpRuleInfo>> getTAutoEmpRuleInfoPage(Page<TAutoEmpRuleInfo> page, TAutoEmpRuleInfoSearchVo tAutoEmpRuleInfo) {
return new R<>(tAutoEmpRuleInfoService.getTAutoEmpRuleInfoPage(page,tAutoEmpRuleInfo));
}
/**
* 不分页查询
* @param tAutoEmpRuleInfo 档案管理规则配置表
* @return
*/
@Operation(summary = "不分页查询", description = "不分页查询")
@PostMapping("/noPage" )
//@PreAuthorize("@pms.hasPermission('demo_tautoempruleinfo_get')" )
public R<List<TAutoEmpRuleInfo>> getTAutoEmpRuleInfoNoPage(@RequestBody TAutoEmpRuleInfoSearchVo tAutoEmpRuleInfo) {
return R.ok(tAutoEmpRuleInfoService.noPageDiy(tAutoEmpRuleInfo));
}
/**
* 通过id查询档案管理规则配置表
* @param id id
* @return R
*/
@Operation(summary = "通过id查询", description = "通过id查询:hasPermission('demo_tautoempruleinfo_get')")
@GetMapping("/{id}" )
@PreAuthorize("@pms.hasPermission('demo_tautoempruleinfo_get')" )
public R<TAutoEmpRuleInfo> getById(@PathVariable("id" ) String id) {
return R.ok(tAutoEmpRuleInfoService.getById(id));
}
/**
* 新增档案管理规则配置表
* @param tAutoEmpRuleInfo 档案管理规则配置表
* @return R
*/
@Operation(summary = "新增档案管理规则配置表", description = "新增档案管理规则配置表:hasPermission('demo_tautoempruleinfo_add')")
@SysLog("新增档案管理规则配置表" )
@PostMapping
@PreAuthorize("@pms.hasPermission('demo_tautoempruleinfo_add')" )
public R<Boolean> save(@RequestBody TAutoEmpRuleInfo tAutoEmpRuleInfo) {
return R.ok(tAutoEmpRuleInfoService.save(tAutoEmpRuleInfo));
}
/**
* 修改档案管理规则配置表
* @param tAutoEmpRuleInfo 档案管理规则配置表
* @return R
*/
@Operation(summary = "修改档案管理规则配置表", description = "修改档案管理规则配置表:hasPermission('demo_tautoempruleinfo_edit')")
@SysLog("修改档案管理规则配置表" )
@PutMapping
@PreAuthorize("@pms.hasPermission('demo_tautoempruleinfo_edit')" )
public R<Boolean> updateById(@RequestBody TAutoEmpRuleInfo tAutoEmpRuleInfo) {
return R.ok(tAutoEmpRuleInfoService.updateById(tAutoEmpRuleInfo));
}
/**
* 通过id删除档案管理规则配置表
* @param id id
* @return R
*/
@Operation(summary = "通过id删除档案管理规则配置表", description = "通过id删除档案管理规则配置表:hasPermission('demo_tautoempruleinfo_del')")
@SysLog("通过id删除档案管理规则配置表" )
@DeleteMapping("/{id}" )
@PreAuthorize("@pms.hasPermission('demo_tautoempruleinfo_del')" )
public R<Boolean> removeById(@PathVariable String id) {
return R.ok(tAutoEmpRuleInfoService.removeById(id));
}
/**
* 档案管理规则配置表 批量导入
*
* @author fxj
* @date 2025-03-13 15:15:26
**/
@SneakyThrows
@Operation(description = "批量新增档案管理规则配置表 hasPermission('demo_tautoempruleinfo-batch-import')")
@SysLog("批量新增档案管理规则配置表")
@PostMapping("/importListAdd")
@PreAuthorize("@pms.hasPermission('demo_tautoempruleinfo-batch-import')")
public R<List<ErrorMessage>> importListAdd(@RequestBody MultipartFile file){
return tAutoEmpRuleInfoService.importDiy(file.getInputStream());
}
/**
* 档案管理规则配置表 批量导出
* @author fxj
* @date 2025-03-13 15:15:26
**/
@Operation(description = "导出档案管理规则配置表 hasPermission('demo_tautoempruleinfo-export')")
@PostMapping("/export")
@PreAuthorize("@pms.hasPermission('demo_tautoempruleinfo-export')")
public void export(HttpServletResponse response, @RequestBody TAutoEmpRuleInfoSearchVo searchVo) {
tAutoEmpRuleInfoService.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.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.TAutoMainRel;
import com.yifu.cloud.plus.v1.yifu.archives.service.TAutoMainRelService;
import com.yifu.cloud.plus.v1.yifu.archives.vo.TAutoMainRelAddVo;
import com.yifu.cloud.plus.v1.yifu.archives.vo.TAutoMainRelDetailVo;
import com.yifu.cloud.plus.v1.yifu.archives.vo.TAutoMainRelExportVo;
import com.yifu.cloud.plus.v1.yifu.archives.vo.TAutoMainRelSearchVo;
import com.yifu.cloud.plus.v1.yifu.common.core.util.Common;
import com.yifu.cloud.plus.v1.yifu.common.core.util.ErrorMessage;
import com.yifu.cloud.plus.v1.yifu.common.core.util.R;
import com.yifu.cloud.plus.v1.yifu.common.core.vo.YifuUser;
import com.yifu.cloud.plus.v1.yifu.common.dapr.util.MenuUtil;
import com.yifu.cloud.plus.v1.yifu.common.log.annotation.SysLog;
import com.yifu.cloud.plus.v1.yifu.common.security.util.SecurityUtils;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.RequiredArgsConstructor;
import lombok.SneakyThrows;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
import javax.servlet.http.HttpServletResponse;
import java.util.List;
/**
* 项目配置表主表
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@RestController
@RequiredArgsConstructor
@RequestMapping("/tautomainrel" )
@Tag(name = "项目配置表主表管理")
public class TAutoMainRelController {
private final TAutoMainRelService tAutoMainRelService;
private final MenuUtil menuUtil;
/**
* 简单分页查询
* @param page 分页对象
* @param tAutoMainRel 项目配置表主表
* @return
*/
@Operation(description = "简单分页查询")
@GetMapping("/page")
public R<IPage<TAutoMainRel>> getTAutoMainRelPage(Page<TAutoMainRel> page, TAutoMainRelSearchVo tAutoMainRel) {
YifuUser user = SecurityUtils.getUser();
menuUtil.setAuthSql(user, tAutoMainRel);
return new R<>(tAutoMainRelService.getTAutoMainRelPage(page,tAutoMainRel));
}
/**
* 不分页查询
* @param tAutoMainRel 项目配置表主表
* @return
*/
@Operation(summary = "不分页查询", description = "不分页查询")
@PostMapping("/noPage" )
//@PreAuthorize("@pms.hasPermission('demo_tautomainrel_get')" )
public R<List<TAutoMainRelExportVo>> getTAutoMainRelNoPage(@RequestBody TAutoMainRelSearchVo tAutoMainRel) {
return R.ok(tAutoMainRelService.noPageDiy(tAutoMainRel));
}
/**
* 通过id查询项目配置表主表及相关信息
* @param id id
* @return R
*/
@Operation(summary = "通过id查询", description = "通过id查询")
@GetMapping("/{id}" )
public R<TAutoMainRelDetailVo> getById(@PathVariable("id" ) String id) {
return tAutoMainRelService.getByIdAsso(id);
}
/**
* 通过id查询项目配置表主表及相关信息
* @param deptId deptNo
* @return R
*/
@Operation(summary = "通过项目信息查询项目配置", description = "通过项目信息查询项目配置")
@GetMapping("/getProjectRule" )
public R<TAutoMainRelDetailVo> getProjectRule(@RequestParam(required = false) String deptId,
@RequestParam(required = false) String deptNo) {
return tAutoMainRelService.getProjectRule(deptId,deptNo);
}
/**
* 新增项目配置表主表
* @param entity 项目配置表主表
* @return R
*/
@Operation(summary = "新增项目配置表", description = "新增项目配置表")
@SysLog("新增项目配置表" )
@PostMapping("/save")
public R<Boolean> save(@RequestBody TAutoMainRelAddVo entity) {
return tAutoMainRelService.saveAsso(entity);
}
/**
* 修改项目配置表主表
* @param entity 项目配置表修改
* @return R
*/
@Operation(summary = "修改项目配置表主表", description = "修改项目配置表")
@SysLog("修改项目配置表" )
@PutMapping("/updateById")
public R<Boolean> updateById(@RequestBody TAutoMainRelAddVo entity) {
return tAutoMainRelService.updateAsso(entity);
}
/**
* 通过id删除项目配置表主表
* @param id id
* @return R
*/
@Operation(summary = "通过id删除项目配置表主表", description = "通过id删除项目配置表主表:hasPermission('demo_tautomainrel_del')")
@SysLog("通过id删除项目配置表主表" )
@DeleteMapping("/{id}" )
@PreAuthorize("@pms.hasPermission('demo_tautomainrel_del')" )
public R<Boolean> removeById(@PathVariable String id) {
return R.ok(tAutoMainRelService.removeById(id));
}
/**
* 项目配置表主表 批量导入
*
* @author fxj
* @date 2025-03-13 15:15:26
**/
@SneakyThrows
@Operation(description = "批量新增项目配置表主表 hasPermission('demo_tautomainrel-batch-import')")
@SysLog("批量新增项目配置表主表")
@PostMapping("/importListAdd")
@PreAuthorize("@pms.hasPermission('demo_tautomainrel-batch-import')")
public R<List<ErrorMessage>> importListAdd(@RequestBody MultipartFile file){
return tAutoMainRelService.importDiy(file.getInputStream());
}
/**
* 项目配置表主表 批量导出
* @author fxj
* @date 2025-03-13 15:15:26
**/
@Operation(description = "导出项目配置表主表 hasPermission('demo_tautomainrel-export')")
@PostMapping("/export")
public void export(HttpServletResponse response, @RequestBody TAutoMainRelSearchVo tAutoMainRel) {
YifuUser user = SecurityUtils.getUser();
menuUtil.setAuthSql(user, tAutoMainRel);
tAutoMainRelService.listExport(response,tAutoMainRel);
}
}
/*
* 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.TAutoRuleLog;
import com.yifu.cloud.plus.v1.yifu.archives.service.TAutoRuleLogService;
import com.yifu.cloud.plus.v1.yifu.archives.vo.TAutoRuleLogSearchVo;
import com.yifu.cloud.plus.v1.yifu.common.core.util.ErrorMessage;
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 lombok.SneakyThrows;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
import javax.servlet.http.HttpServletResponse;
import java.util.List;
/**
* 规则变更日志表
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@RestController
@RequiredArgsConstructor
@RequestMapping("/tautorulelog" )
@Tag(name = "规则变更日志表管理")
public class TAutoRuleLogController {
private final TAutoRuleLogService tAutoRuleLogService;
/**
* 简单分页查询
* @param page 分页对象
* @param tAutoRuleLog 规则变更日志表
* @return
*/
@Operation(description = "简单分页查询")
@GetMapping("/page")
public R<IPage<TAutoRuleLog>> getTAutoRuleLogPage(Page<TAutoRuleLog> page, TAutoRuleLogSearchVo tAutoRuleLog) {
return new R<>(tAutoRuleLogService.getTAutoRuleLogPage(page,tAutoRuleLog));
}
}
......@@ -4,9 +4,7 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.yifu.cloud.plus.v1.yifu.archives.entity.TCompleteMonitor;
import com.yifu.cloud.plus.v1.yifu.archives.service.TCompleteMonitorService;
import com.yifu.cloud.plus.v1.yifu.archives.vo.EmpMainDetailVo;
import com.yifu.cloud.plus.v1.yifu.archives.vo.TCompleteMonitorInfoVo;
import com.yifu.cloud.plus.v1.yifu.archives.vo.TCompleteMonitorSearchVo;
import com.yifu.cloud.plus.v1.yifu.archives.vo.*;
import com.yifu.cloud.plus.v1.yifu.common.core.util.R;
import com.yifu.cloud.plus.v1.yifu.common.core.vo.YifuUser;
import com.yifu.cloud.plus.v1.yifu.common.dapr.util.MenuUtil;
......@@ -164,4 +162,31 @@ public class TCompleteMonitorController {
tCompleteMonitorService.updateProjectStatusByDeptNo(deptNo);
return R.ok();
}
/**
* 简单分页查询
* @param page 分页对象
* @param searchVo 档案待完善
* @return
*/
@Operation(description = "档案待完善列表分页查询")
@GetMapping("/archivesPage")
public R<IPage<EmployeeRegistrationProjectListVo>> getAllLackArchivesPage(Page<EmployeeRegistrationProjectListVo> page, EmployeeRegistrationPreSearchVo searchVo) {
YifuUser user = SecurityUtils.getUser();
menuUtil.setAuthSql(user, searchVo);
return new R<>(tCompleteMonitorService.getAllLackArchivesPage(page,searchVo));
}
/**
* 档案待完善 批量导出
* @author huyc
* @date 2025-03-17 16:24:38
**/
@Operation(description = "导出档案待完善")
@PostMapping("/archivesExport")
public void archivesExport(HttpServletResponse response, @RequestBody EmployeeRegistrationPreSearchVo searchVo) {
YifuUser user = SecurityUtils.getUser();
menuUtil.setAuthSql(user, searchVo);
tCompleteMonitorService.archivesExport(response,searchVo);
}
}
......@@ -143,4 +143,16 @@ public class TEmployeeLogController {
return R.ok(tEmployeeLogService.list(Wrappers.<TEmployeeLog>query().eq("PROJECT_ID", projectId)
.eq("TYPE", CommonConstants.ONE_INT).orderByDesc(CommonConstants.CREATE_TIME)));
}
/**
* @Description: 通过EMP_ID查询入职确认信息变更日志
* @Author: huyc
* @Date: 2025/3/17 19:06
* @return: com.yifu.cloud.plus.v1.yifu.common.core.util.R<java.util.List < com.yifu.cloud.plus.v1.yifu.archives.entity.TEmployeeLog>>
**/
@Operation(summary = "通过EMP_ID查询入职确认信息变更日志", description = "通过EMP_ID查询入职确认信息变更日志")
@GetMapping("/getPreLogById")
public R<IPage<TEmployeeLog>> getPreLogById(Page<TEmployeeLog> page, TEmployeeLog tEmployeeLog) {
return R.ok(tEmployeeLogService.page(page, Wrappers.query(tEmployeeLog).orderByDesc(CommonConstants.CREATE_TIME)));
}
}
package com.yifu.cloud.plus.v1.yifu.archives.controller;
import com.yifu.cloud.plus.v1.yifu.archives.service.TRegisteWarningEmployeeService;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.RequiredArgsConstructor;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* 入职登记发送短信记录表
*
* @author huych
* @date 2025-03-18 16:54:51
*/
@RestController
@RequiredArgsConstructor
@RequestMapping("/tregistwarningemployee" )
@Tag(name = "入职登记发送短信记录表管理")
public class TRegistWarningEmployeeController {
private final TRegisteWarningEmployeeService tRegistWarningEmployeeService;
}
......@@ -483,4 +483,21 @@ public class TSettleDomainController {
List<TDomainUpCsVo> list= JSONObject.parseArray(jsonStr, TDomainUpCsVo.class);
return tSettleDomainService.updateProjectCsInfo(list);
}
/**
* 获取登录用户拥有的项目前端客服数据
*
* @param
* @return
* @Author huych
* @Date 2025-03-13
**/
@Operation(description = "获取登录用户拥有的项目前端客服数据)")
@Inner
@PostMapping("/getAllDeptByCustomerLoginName")
public TSettleDomainRegistListVo getAllDeptByCustomerLoginName(@RequestBody String userLoginName) {
TSettleDomainRegistListVo vo = new TSettleDomainRegistListVo();
vo.setDeptNos(tSettleDomainService.getAllDeptByCustomerLoginName(userLoginName));
return vo;
}
}
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.EmployeeRegistrationPre;
import com.yifu.cloud.plus.v1.yifu.archives.vo.*;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* 入职待建档表
*
* @author huych
* @date 2025-03-12 17:14:19
*/
@Mapper
public interface EmployeeRegistrationPreMapper extends BaseMapper<EmployeeRegistrationPre> {
/**
* 入职待建档表简单分页查询
* @param employeeRegistrationPre 入职待建档表
* @return
*/
IPage<EmployeeRegistrationPre> getEmployeeRegistrationPrePage(Page<EmployeeRegistrationPre> page, @Param("employeeRegistrationPre") EmployeeRegistrationPre employeeRegistrationPre);
/**
* 入职待建档表导出数量查询
* @param searchVo 导出查询vo
* @return
*/
long selectExportCount(@Param("employeeRegistrationPre") EmployeeRegistrationPreSearchVo searchVo);
/**
* 入职待建档表导出列表查询
* @param searchVo 导出查询vo
* @return
*/
List<EmployeeRegistrationPreExportVo> selectExportList(@Param("employeeRegistrationPre") EmployeeRegistrationPreSearchVo searchVo);
/**
* 入职确认信息导出列表查询
* @param searchVo 导出查询vo
* @return
*/
List<EmployeeRegistrationPreInfoExportVo> selectConfirmExportList(@Param("employeeRegistrationPre") EmployeeRegistrationPreSearchVo searchVo);
MessageTempleteVo selectTempleteVo(@Param("id") String id);
EmployeeInfoMsgVo getEmployeeArchivesInfo(@Param("id") String id);
/**
* @Description: 判断简档详档-优先从档案维护任务表
* @Author: hgw
* @Date: 2025/3/20 15:20
* @return: java.lang.String
**/
String judegIsSimpleByPre(@Param("empIdCard") String empIdCard, @Param("deptId") String deptId);
/**
* @Description: 获取员工类型与档案地市 -优先从档案维护任务表
* @Author: hgw
* @Date: 2025/3/21 11:25
* @return: com.yifu.cloud.plus.v1.yifu.archives.entity.EmployeeRegistrationPre
**/
EmployeeRegistrationPre getPreByPre(@Param("empIdCard") String empIdCard, @Param("deptId") String deptId);
/**
* @Description: 判断简档详档-从项目档案表
* @Author: hgw
* @Date: 2025/3/20 15:20
* @return: java.lang.String
**/
String judegIsSimpleByEmpProject(@Param("empIdCard") String empIdCard, @Param("deptId") String deptId);
/**
* @Description: 获取员工类型与档案地市 从项目档案表
* @Author: hgw
* @Date: 2025/3/21 11:25
* @return: com.yifu.cloud.plus.v1.yifu.archives.entity.EmployeeRegistrationPre
**/
EmployeeRegistrationPre getPreByEmpProject(@Param("empIdCard") String empIdCard, @Param("deptId") String deptId);
}
/*
* 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.SysAutoDictItem;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
/**
* 字典项
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@Mapper
public interface SysAutoDictItemMapper extends BaseMapper<SysAutoDictItem> {
/**
* 字典项简单分页查询
* @param sysAutoDictItem 字典项
* @return
*/
IPage<SysAutoDictItem> getSysAutoDictItemPage(Page<SysAutoDictItem> page, @Param("sysAutoDictItem") SysAutoDictItem sysAutoDictItem);
}
/*
* 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.SysAutoDict;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
/**
* 字典表
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@Mapper
public interface SysAutoDictMapper extends BaseMapper<SysAutoDict> {
/**
* 字典表简单分页查询
* @param sysAutoDict 字典表
* @return
*/
IPage<SysAutoDict> getSysAutoDictPage(Page<SysAutoDict> page, @Param("sysAutoDict") SysAutoDict sysAutoDict);
}
......@@ -46,12 +46,17 @@ public interface TAttaInfoMapper extends BaseMapper<TAttaInfo> {
List<TAttaInfo> getAttaByApplyId(@Param("applyId")String applyId);
void deleteByDomainId(@Param("domainId") String domainId);
// 详档变简档,删除身份证、其他附件、签名之外的附件
void deleteByDomainIdExceptionCard(@Param("domainId") String domainId);
void deleteByDomainIdAndType(@Param("domainId") String domainId, @Param("relationType") String relationType);
// 删除学历与职业资格之外的附件
void deleteByDomainIdAndOther(@Param("domainId") String domainId);
// 简档,仅删除身份证附件和(21(预入职申明签名);22(预入职确认签名);23(预入职pdf文)
void deleteByDomainIdCard(@Param("domainId") String domainId);
List<TAttaInfoVo> getAttInfoByParam(@Param("departNo")String departNo, @Param("startDate")String startDate, @Param("endDate")String endDate);
int getAttInfoCountByParam(@Param("departNo")String departNo, @Param("startDate")String startDate, @Param("endDate")String endDate);
......
/*
* 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.TAutoEmpRuleInfo;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
/**
* 档案管理规则配置表
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@Mapper
public interface TAutoEmpRuleInfoMapper extends BaseMapper<TAutoEmpRuleInfo> {
/**
* 档案管理规则配置表简单分页查询
* @param tAutoEmpRuleInfo 档案管理规则配置表
* @return
*/
IPage<TAutoEmpRuleInfo> getTAutoEmpRuleInfoPage(Page<TAutoEmpRuleInfo> page, @Param("tAutoEmpRuleInfo") TAutoEmpRuleInfo tAutoEmpRuleInfo);
}
/*
* 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.TAutoMainRel;
import com.yifu.cloud.plus.v1.yifu.archives.vo.TAutoMainRelExportVo;
import com.yifu.cloud.plus.v1.yifu.archives.vo.TAutoMainRelSearchVo;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* 项目配置表主表
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@Mapper
public interface TAutoMainRelMapper extends BaseMapper<TAutoMainRel> {
/**
* 项目配置表主表简单分页查询
* @param tAutoMainRel 项目配置表主表
* @return
*/
IPage<TAutoMainRel> getTAutoMainRelPage(Page<TAutoMainRel> page, @Param("tAutoMainRel") TAutoMainRel tAutoMainRel);
Long noPageCountDiy(@Param("tAutoMainRel")TAutoMainRelSearchVo tAutoMainRel);
List<TAutoMainRelExportVo> noPageDiy(@Param("tAutoMainRel")TAutoMainRelSearchVo tAutoMainRel);
}
/*
* 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.TAutoRuleLog;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
/**
* 规则变更日志表
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@Mapper
public interface TAutoRuleLogMapper extends BaseMapper<TAutoRuleLog> {
/**
* 规则变更日志表简单分页查询
* @param tAutoRuleLog 规则变更日志表
* @return
*/
IPage<TAutoRuleLog> getTAutoRuleLogPage(Page<TAutoRuleLog> page, @Param("tAutoRuleLog") TAutoRuleLog tAutoRuleLog);
}
......@@ -42,6 +42,26 @@ public interface TCompleteMonitorMapper extends BaseMapper<TCompleteMonitor> {
*/
IPage<TCompleteMonitor> getTCompleteMonitorPage(Page<TCompleteMonitor> page, @Param("tCompleteMonitor") TCompleteMonitorSearchVo tCompleteMonitor);
/**
* 档案待完善列表分页查询
* @param employeeRegistrationPre 入职待完善
* @return
*/
IPage<EmployeeRegistrationProjectListVo> getAllLackArchivesPage(Page<EmployeeRegistrationProjectListVo> page, @Param("employeeRegistrationPre") EmployeeRegistrationPreSearchVo employeeRegistrationPre);
/**
* 入职待完善数量查询
* @param employeeRegistrationPre 入职待完善
* @return
*/
long getAllLackArchivesExportCount(@Param("employeeRegistrationPre") EmployeeRegistrationPreSearchVo employeeRegistrationPre);
/**
* 入职待完善批量导出
* @param employeeRegistrationPre 入职待完善
* @return
*/
List<EmployeeRegistrationProjectListVo> getAllLackArchivesExportList(@Param("employeeRegistrationPre") EmployeeRegistrationPreSearchVo employeeRegistrationPre);
/**
* 档案完整度监控简单分页查询
......
/*
* 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.yifu.cloud.plus.v1.yifu.archives.entity.TRegisteWarningEmployee;
import org.apache.ibatis.annotations.Mapper;
/**
* 入职登记发送短信记录表
*
* @author huych
* @date 2025-03-18 16:54:51
*/
@Mapper
public interface TRegisteWarningEmployeeMapper extends BaseMapper<TRegisteWarningEmployee> {
}
......@@ -23,12 +23,9 @@ import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.yifu.cloud.plus.v1.yifu.archives.entity.TCustomerInfo;
import com.yifu.cloud.plus.v1.yifu.archives.entity.TSettleDomain;
import com.yifu.cloud.plus.v1.yifu.archives.vo.*;
import com.yifu.cloud.plus.v1.yifu.common.core.util.R;
import org.apache.ibatis.annotations.MapKey;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.HashMap;
import java.util.List;
/**
......@@ -115,4 +112,6 @@ public interface TSettleDomainMapper extends BaseMapper<TSettleDomain> {
List<TSettleDomain> getAllInfoMap();
List<String> getAllDeptByCustomerLoginName(@Param(value = "userLoginName") String userLoginName);
}
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.EmployeeRegistrationPre;
import com.yifu.cloud.plus.v1.yifu.archives.vo.EmployeeInfoMsgVo;
import com.yifu.cloud.plus.v1.yifu.archives.vo.EmployeeRegistrationPreSearchVo;
import com.yifu.cloud.plus.v1.yifu.archives.vo.EmployeeRegistrationPreVo;
import com.yifu.cloud.plus.v1.yifu.archives.vo.SendMessageUpdateVo;
import com.yifu.cloud.plus.v1.yifu.common.core.util.R;
import javax.servlet.http.HttpServletResponse;
import java.util.List;
/**
* 入职待建档表
*
* @author huych
* @date 2025-03-12 17:14:19
*/
public interface EmployeeRegistrationPreService extends IService<EmployeeRegistrationPre> {
/**
* 入职待建档表简单分页查询
* @param employeeRegistrationPre 入职待建档表
* @return
*/
IPage<EmployeeRegistrationPre> getEmployeeRegistrationPrePage(Page<EmployeeRegistrationPre> page, EmployeeRegistrationPreSearchVo employeeRegistrationPre);
/**
* 入职待建档表导出
* @param searchVo 入职待建档导出查询vo
* @return
*/
void listExport(HttpServletResponse response, EmployeeRegistrationPreSearchVo searchVo);
/**
* 入职确认信息导出
* @param searchVo 入职确认信息导出查询vo
* @return
*/
void confirmExport(HttpServletResponse response, EmployeeRegistrationPreSearchVo searchVo);
/**
* 新增入职待建档信息
* @param preVo 新增入职待建档vo
* @return
*/
Boolean saveRegistPreInfo(EmployeeRegistrationPreVo preVo);
/**
* 拒绝入职
* @param employeeRegistrationPre 入职待建档表
* @return
*/
R updateRegistById(EmployeeRegistrationPre employeeRegistrationPre);
/**
* 入职确认信息信息修改
* @param employeeRegistrationPre 入职确认信息表
* @return
*/
R updateCommonInfo(EmployeeRegistrationPre employeeRegistrationPre);
/**
* 数量查询
* @param searchVo type 查询类型 1待办列表 2 监控列表
* @return
*/
R getListCount(EmployeeRegistrationPreSearchVo searchVo);
/**
* 查询预入职待审核数据
* @param pre 入职待建档表
* @return
*/
R registrationPreAudit(EmployeeRegistrationPre pre);
/**
* 批量发送短信
* @param vo
* @return
*/
R batchSendMessage(List<SendMessageUpdateVo> vo, String type);
void updatePreStatusToEnd(String deptNo, String empIdcard);
void updatePreStatusToOne(String deptNo, String empIdcard);
// 更新为待审核
void updatePreStatusToTwo(String deptId, String empIdCard);
R<EmployeeInfoMsgVo> getEmployeeInfo(String cardOrId);
/**
* @param empIdCard 身份证
* @param deptId 项目ID
* @Description: 判断简档详档,类型1详档2简档(员工类型:代理的是简档,“非代理”且员工合同类型为:空、标准合同、劳务派遣合同、补贴合同 是详档,其余为简档)
* @Author: hgw
* @Date: 2025/3/20 15:03
* @return: java.lang.String
**/
String judgeIsSimple(String empIdCard, String deptId);
/**
* @Description: 获取员工类型与档案地市 -优先从档案维护任务表
* @Author: hgw
* @Date: 2025/3/21 11:26
* @return: com.yifu.cloud.plus.v1.yifu.archives.entity.EmployeeRegistrationPre
**/
EmployeeRegistrationPre getPreInfo(String empIdCard, String deptId);
}
package com.yifu.cloud.plus.v1.yifu.archives.service;
import com.yifu.cloud.plus.v1.yifu.archives.entity.EmployeeRegistrationPre;
public interface ScheduleService {
void scheduleTask(EmployeeRegistrationPre record);
void executeTask(String aId);
}
/*
* 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.SysAutoDictItem;
import com.yifu.cloud.plus.v1.yifu.common.core.util.ErrorMessage;
import com.yifu.cloud.plus.v1.yifu.common.core.util.R;
import com.yifu.cloud.plus.v1.yifu.archives.vo.SysAutoDictItemSearchVo;
import javax.servlet.http.HttpServletResponse;
import java.io.InputStream;
import java.util.List;
/**
* 字典项
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
public interface SysAutoDictItemService extends IService<SysAutoDictItem> {
/**
* 字典项简单分页查询
* @param sysAutoDictItem 字典项
* @return
*/
IPage<SysAutoDictItem> getSysAutoDictItemPage(Page<SysAutoDictItem> page, SysAutoDictItemSearchVo sysAutoDictItem);
R<List<ErrorMessage>> importDiy(InputStream inputStream);
void listExport(HttpServletResponse response, SysAutoDictItemSearchVo searchVo);
List<SysAutoDictItem> noPageDiy(SysAutoDictItemSearchVo searchVo);
/**
* 获取项目配置下的字典列表
* @param searchVo 字典项
* @return R<List<SysAutoDictItem>>
* @author chenyuxi
*/
List<SysAutoDictItem> selectByDeptNo(SysAutoDictItemSearchVo 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;
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.SysAutoDict;
import com.yifu.cloud.plus.v1.yifu.archives.vo.SysAutoDictSearchVo;
import com.yifu.cloud.plus.v1.yifu.common.core.util.ErrorMessage;
import com.yifu.cloud.plus.v1.yifu.common.core.util.R;
import javax.servlet.http.HttpServletResponse;
import java.io.InputStream;
import java.util.List;
/**
* 字典表
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
public interface SysAutoDictService extends IService<SysAutoDict> {
/**
* 字典表简单分页查询
* @param sysAutoDict 字典表
* @return
*/
IPage<SysAutoDict> getSysAutoDictPage(Page<SysAutoDict> page, SysAutoDictSearchVo sysAutoDict);
R<List<ErrorMessage>> importDiy(InputStream inputStream);
void listExport(HttpServletResponse response, SysAutoDictSearchVo searchVo);
List<SysAutoDict> noPageDiy(SysAutoDictSearchVo searchVo);
}
......@@ -80,8 +80,19 @@ public interface TAttaInfoService extends IService<TAttaInfo> {
**/
void deleteByDomainId(String domainId);
/**
* @Description: 详档变简档,删除身份证、其他附件、签名之外的附件
* @Author: hgw
* @Date: 2025/3/21 17:06
* @return: void
**/
void deleteByDomainIdExceptionCard(String domainId);
void deleteByDomainIdAndOther(String domainId);
// 简档,仅删除身份证附件和(21(预入职申明签名);22(预入职确认签名);23(预入职pdf文)
void deleteByDomainIdCard(String domainId);
void deleteByDomainIdAndType(String domainId, int relationType);
List<TAttaInfoVo> getAttInfoByParam(String departNo, String startDate, String endDate);
......
/*
* 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.TAutoEmpRuleInfo;
import com.yifu.cloud.plus.v1.yifu.archives.vo.TAutoEmpRuleInfoSearchVo;
import com.yifu.cloud.plus.v1.yifu.common.core.util.ErrorMessage;
import com.yifu.cloud.plus.v1.yifu.common.core.util.R;
import javax.servlet.http.HttpServletResponse;
import java.io.InputStream;
import java.util.List;
/**
* 档案管理规则配置表
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
public interface TAutoEmpRuleInfoService extends IService<TAutoEmpRuleInfo> {
/**
* 档案管理规则配置表简单分页查询
* @param tAutoEmpRuleInfo 档案管理规则配置表
* @return
*/
IPage<TAutoEmpRuleInfo> getTAutoEmpRuleInfoPage(Page<TAutoEmpRuleInfo> page, TAutoEmpRuleInfoSearchVo tAutoEmpRuleInfo);
R<List<ErrorMessage>> importDiy(InputStream inputStream);
void listExport(HttpServletResponse response, TAutoEmpRuleInfoSearchVo searchVo);
List<TAutoEmpRuleInfo> noPageDiy(TAutoEmpRuleInfoSearchVo 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;
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.TAutoMainRel;
import com.yifu.cloud.plus.v1.yifu.archives.vo.TAutoMainRelAddVo;
import com.yifu.cloud.plus.v1.yifu.archives.vo.TAutoMainRelDetailVo;
import com.yifu.cloud.plus.v1.yifu.archives.vo.TAutoMainRelExportVo;
import com.yifu.cloud.plus.v1.yifu.archives.vo.TAutoMainRelSearchVo;
import com.yifu.cloud.plus.v1.yifu.common.core.util.ErrorMessage;
import com.yifu.cloud.plus.v1.yifu.common.core.util.R;
import javax.servlet.http.HttpServletResponse;
import java.io.InputStream;
import java.util.List;
/**
* 项目配置表主表
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
public interface TAutoMainRelService extends IService<TAutoMainRel> {
/**
* 项目配置表主表简单分页查询
* @param tAutoMainRel 项目配置表主表
* @return
*/
IPage<TAutoMainRel> getTAutoMainRelPage(Page<TAutoMainRel> page, TAutoMainRelSearchVo tAutoMainRel);
R<List<ErrorMessage>> importDiy(InputStream inputStream);
void listExport(HttpServletResponse response, TAutoMainRelSearchVo searchVo);
List<TAutoMainRelExportVo> noPageDiy(TAutoMainRelSearchVo searchVo);
R<TAutoMainRelDetailVo> getByIdAsso(String id);
R<Boolean> saveAsso(TAutoMainRelAddVo entity);
R<Boolean> updateAsso(TAutoMainRelAddVo entity);
R<TAutoMainRelDetailVo> getProjectRule(String deptId, String deptNo);
}
/*
* 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.TAutoRuleLog;
import com.yifu.cloud.plus.v1.yifu.archives.vo.TAutoRuleLogSearchVo;
/**
* 规则变更日志表
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
public interface TAutoRuleLogService extends IService<TAutoRuleLog> {
IPage<TAutoRuleLog> getTAutoRuleLogPage(Page<TAutoRuleLog> page, TAutoRuleLogSearchVo tAutoRuleLog);
<T> TAutoRuleLog saveModificationRecord(Integer type, String mainId, T oldInfo, T newInfo);
}
......@@ -5,9 +5,7 @@ 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.TCompleteMonitor;
import com.yifu.cloud.plus.v1.yifu.archives.vo.EmpMainDetailVo;
import com.yifu.cloud.plus.v1.yifu.archives.vo.TCompleteMonitorInfoVo;
import com.yifu.cloud.plus.v1.yifu.archives.vo.TCompleteMonitorSearchVo;
import com.yifu.cloud.plus.v1.yifu.archives.vo.*;
import com.yifu.cloud.plus.v1.yifu.common.core.util.R;
import javax.servlet.http.HttpServletResponse;
......@@ -26,6 +24,20 @@ public interface TCompleteMonitorService extends IService<TCompleteMonitor> {
*/
IPage<TCompleteMonitor> getTCompleteMonitorPage(Page<TCompleteMonitor> page, TCompleteMonitorSearchVo tCompleteMonitor);
/**
* 档案待完善列表分页查询
* @param preSearchVo 档案完整度监控
* @return
*/
IPage<EmployeeRegistrationProjectListVo> getAllLackArchivesPage(Page<EmployeeRegistrationProjectListVo> page, EmployeeRegistrationPreSearchVo preSearchVo);
/**
* 档案待完善列表导出
* @param preSearchVo 档案待完善
* @return
*/
void archivesExport(HttpServletResponse response, EmployeeRegistrationPreSearchVo preSearchVo);
/**
* @Description: 详情
* @Author: huyc
......
......@@ -55,6 +55,19 @@ public interface TEmployeeLogService extends IService<TEmployeeLog> {
* @param newInfo
* @return
**/
<T> TEmployeeLog saveModificationRecord(Integer type, String empId, String projectId, T oldInfo, T newInfo,String userId,String userName);
/**
* 生成修改记录
* @Author pwang
* @Date 2022-06-22 11:32
* @param type 类型:0人员档案;1项目档案;2人员和项目档案;3员工合同更新 4入职确认信息修改
* @param empId 档案id
* @param projectId 项目id
* @param oldInfo
* @param newInfo
* @return
**/
<T> TEmployeeLog saveModificationRecord(Integer type, String empId, String projectId, T oldInfo, T newInfo, YifuUser user);
/**
......
/*
* 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.extension.service.IService;
import com.yifu.cloud.plus.v1.yifu.archives.entity.TRegisteWarningEmployee;
/**
* 入职登记发送短信记录表
*
* @author huych
* @date 2025-03-18 16:54:51
*/
public interface TRegisteWarningEmployeeService extends IService<TRegisteWarningEmployee> {
}
......@@ -21,7 +21,6 @@ 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.TCustomerInfo;
import com.yifu.cloud.plus.v1.yifu.archives.entity.TEmpDisabilityInfo;
import com.yifu.cloud.plus.v1.yifu.archives.entity.TSettleDomain;
import com.yifu.cloud.plus.v1.yifu.archives.vo.*;
import com.yifu.cloud.plus.v1.yifu.common.core.util.R;
......@@ -88,6 +87,8 @@ public interface TSettleDomainService extends IService<TSettleDomain> {
List<String> getSettleDomainIdsByUserId(String id);
List<String> getAllDeptByCustomerLoginName(String userLoginName);
/**
* 获取用户所拥有的项目编码
*/
......
......@@ -111,6 +111,9 @@ public class FddContractAttachInfoServiceImpl extends ServiceImpl<FddContractAtt
@Lazy
private DoJointTask doJointTask;
@Autowired
private EmployeeRegistrationPreService registrationPreService;
ExecutorService executorService = Executors.newFixedThreadPool(10);
public static final String NO_VALID_CONTRACT_FOUND = "未获取到有效在用合同,请确认存在对应姓名、身份证、合同起始时间的合同数据";
......@@ -243,6 +246,8 @@ public class FddContractAttachInfoServiceImpl extends ServiceImpl<FddContractAtt
// 增-同步处理CSP入离职申请为已处理,加日志
tEmployeeProjectService.doSaveBelongDept(tEmployeeProject, CommonConstants.ONE_STRING);
// 更新入职待建档状态为已完成
registrationPreService.updatePreStatusToEnd(tEmployeeProject.getDeptNo(),tEmployeeProject.getEmpIdcard());
}
//判断人员档案的状态,如果是减档状态就复档
......
package com.yifu.cloud.plus.v1.yifu.archives.service.impl;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.yifu.cloud.plus.v1.yifu.archives.entity.EmployeeRegistrationPre;
import com.yifu.cloud.plus.v1.yifu.archives.service.EmployeeRegistrationPreService;
import com.yifu.cloud.plus.v1.yifu.archives.service.ScheduleService;
import com.yifu.cloud.plus.v1.yifu.archives.vo.SendMessageUpdateVo;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.CommonConstants;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.TaskScheduler;
import org.springframework.stereotype.Service;
import org.springframework.transaction.support.TransactionTemplate;
import javax.annotation.PostConstruct;
import java.time.Instant;
import java.time.LocalDateTime;
import java.time.ZoneId;
import java.util.ArrayList;
import java.util.List;
@Service
public class ScheduleServiceImpl implements ScheduleService {
@Autowired
private EmployeeRegistrationPreService registrationPreService;
@Autowired
private TaskScheduler taskScheduler;
@Autowired
private TransactionTemplate transactionTemplate;
// 应用启动时初始化未处理的任务
@PostConstruct
public void initSchedule() {
List<EmployeeRegistrationPre> records = registrationPreService.list(Wrappers.<EmployeeRegistrationPre>query()
.lambda().ge(EmployeeRegistrationPre::getExpectedCollectionTime,LocalDateTime.now())
.eq(EmployeeRegistrationPre::getProcessStatus,CommonConstants.ZERO_STRING));
records.forEach(this::scheduleTask);
}
// 调度单个任务
@Override
public void scheduleTask(EmployeeRegistrationPre record) {
Instant triggerTime = record.getExpectedCollectionTime().atZone(ZoneId.systemDefault()).toInstant();
taskScheduler.schedule(() -> executeTask(record.getId()), triggerTime);
}
// 执行发送短信操作(事务内处理)
@Override
public void executeTask(String aId) {
transactionTemplate.execute(status -> {
List<SendMessageUpdateVo> voList = new ArrayList<>();
SendMessageUpdateVo updateVo = new SendMessageUpdateVo();
updateVo.setId(aId);
voList.add(updateVo);
registrationPreService.batchSendMessage(voList, CommonConstants.ONE_STRING);
return null;
});
}
}
......@@ -135,11 +135,21 @@ public class TAttaInfoServiceImpl extends ServiceImpl<TAttaInfoMapper, TAttaInfo
baseMapper.deleteByDomainId(domainId);
}
@Override
public void deleteByDomainIdExceptionCard(String domainId) {
baseMapper.deleteByDomainIdExceptionCard(domainId);
}
@Override
public void deleteByDomainIdAndOther(String domainId) {
baseMapper.deleteByDomainIdAndOther(domainId);
}
@Override
public void deleteByDomainIdCard(String domainId) {
baseMapper.deleteByDomainIdCard(domainId);
}
@Override
public void deleteByDomainIdAndType(String domainId, int relationType) {
// 学历
......
/*
* 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.fastjson.JSON;
import com.alibaba.fastjson.serializer.SerializerFeature;
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.TAutoRuleLog;
import com.yifu.cloud.plus.v1.yifu.archives.mapper.TAutoRuleLogMapper;
import com.yifu.cloud.plus.v1.yifu.archives.service.TAutoRuleLogService;
import com.yifu.cloud.plus.v1.yifu.archives.vo.TAutoRuleLogSearchVo;
import com.yifu.cloud.plus.v1.yifu.common.core.util.Common;
import com.yifu.cloud.plus.v1.yifu.common.core.util.equator.HrEquator;
import lombok.extern.log4j.Log4j2;
import org.springframework.stereotype.Service;
import java.time.LocalDateTime;
import static com.alibaba.fastjson.serializer.SerializerFeature.*;
/**
* 规则变更日志表
*
* @author fxj
* @date 2025-03-13 15:15:26
*/
@Log4j2
@Service
public class TAutoRuleLogServiceImpl extends ServiceImpl<TAutoRuleLogMapper, TAutoRuleLog> implements TAutoRuleLogService {
/**
* 规则变更日志表简单分页查询
* @param tAutoRuleLog 规则变更日志表
* @return
*/
@Override
public IPage<TAutoRuleLog> getTAutoRuleLogPage(Page<TAutoRuleLog> page, TAutoRuleLogSearchVo tAutoRuleLog){
return baseMapper.getTAutoRuleLogPage(page,tAutoRuleLog);
}
@Override
public <T> TAutoRuleLog saveModificationRecord(Integer type, String mainId, T oldInfo, T newInfo) {
try{
//比较记录不影响业务逻辑,用try套住
//比较差异
String differenceKey = HrEquator.comparisonValue(oldInfo, newInfo);
//如果有差异保存差异
if(!Common.isEmpty(differenceKey)){
TAutoRuleLog log = new TAutoRuleLog();
log.setType(type);
log.setMainId(mainId);
log.setCreateTime(LocalDateTime.now());
log.setOldInfo(JSON.toJSONString(oldInfo,features));
log.setNewInfo(JSON.toJSONString(newInfo,features));
log.setDifferenceInfo(differenceKey);
baseMapper.insert(log);
return log;
}
}catch (Exception e){
log.error(JSON.toJSON(oldInfo)+"插入修改记录报错>>>",e);
}
return null;
}
private SerializerFeature[] features = new SerializerFeature[] {
WriteMapNullValue, WriteNullNumberAsZero, WriteNullListAsEmpty,
WriteNullStringAsEmpty,WriteDateUseDateFormat
};
}
package com.yifu.cloud.plus.v1.yifu.archives.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.yifu.cloud.plus.v1.yifu.archives.entity.TRegisteWarningEmployee;
import com.yifu.cloud.plus.v1.yifu.archives.mapper.TRegisteWarningEmployeeMapper;
import com.yifu.cloud.plus.v1.yifu.archives.service.TRegisteWarningEmployeeService;
import lombok.extern.log4j.Log4j2;
import org.springframework.stereotype.Service;
/**
* 入职登记发送短信记录表
*
* @author huych
* @date 2025-03-18 16:54:51
*/
@Log4j2
@Service
public class TRegisteWarningEmployeeServiceImpl extends ServiceImpl<TRegisteWarningEmployeeMapper, TRegisteWarningEmployee> implements TRegisteWarningEmployeeService {
}
......@@ -53,6 +53,8 @@ security:
- /tpreempmain/getPhoneByCardAndName
- /tpreempmain/sendCode
- /tpreempmain/checkCode
- /employeeregistrationpre/getEmployeeInfo
- /employeeregistrationpre/judgeIsSimple
# 文件上传相关 支持阿里云、华为云、腾讯、minio
......
This diff is collapsed.
This diff is collapsed.
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