Commit 562d25d0 authored by huyuchen's avatar huyuchen

Merge remote-tracking branch 'origin/MVP1.7.12' into MVP1.7.12

parents da41d317 29747df9
...@@ -18,9 +18,7 @@ ...@@ -18,9 +18,7 @@
package com.yifu.cloud.plus.v1.yifu.archives.entity; package com.yifu.cloud.plus.v1.yifu.archives.entity;
import com.alibaba.excel.annotation.ExcelProperty; import com.alibaba.excel.annotation.ExcelProperty;
import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.*;
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.core.constant.ExcelAttribute;
import com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity; import com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity;
import io.swagger.v3.oas.annotations.media.Schema; import io.swagger.v3.oas.annotations.media.Schema;
...@@ -65,6 +63,7 @@ public class TAutoContractRuleInfo extends BaseEntity { ...@@ -65,6 +63,7 @@ public class TAutoContractRuleInfo extends BaseEntity {
@Length(max = 1, message = "新签合同发起时间类型 不能超过1个字符") @Length(max = 1, message = "新签合同发起时间类型 不能超过1个字符")
@ExcelProperty("新签合同发起时间类型 ") @ExcelProperty("新签合同发起时间类型 ")
@Schema(description = "新签合同发起时间类型 0 入职日期 1入职3天后 2入职1周后 3入职2周后 4入职3周后") @Schema(description = "新签合同发起时间类型 0 入职日期 1入职3天后 2入职1周后 3入职2周后 4入职3周后")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String newSignType; private String newSignType;
/** /**
* 新签合同发起时间 * 新签合同发起时间
...@@ -73,6 +72,7 @@ public class TAutoContractRuleInfo extends BaseEntity { ...@@ -73,6 +72,7 @@ public class TAutoContractRuleInfo extends BaseEntity {
@Length(max = 10, message = "新签合同发起时间不能超过10个字符") @Length(max = 10, message = "新签合同发起时间不能超过10个字符")
@ExcelProperty("新签合同发起时间") @ExcelProperty("新签合同发起时间")
@Schema(description = "新签合同发起时间") @Schema(description = "新签合同发起时间")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String newSignDate; private String newSignDate;
/** /**
* 确认签署时间类型 0 签订发起日 * 确认签署时间类型 0 签订发起日
...@@ -81,6 +81,7 @@ public class TAutoContractRuleInfo extends BaseEntity { ...@@ -81,6 +81,7 @@ public class TAutoContractRuleInfo extends BaseEntity {
@Length(max = 1, message = "确认签署时间类型 不能超过1个字符") @Length(max = 1, message = "确认签署时间类型 不能超过1个字符")
@ExcelProperty("确认签署时间类型 ") @ExcelProperty("确认签署时间类型 ")
@Schema(description = "确认签署时间类型 0 签订发起日") @Schema(description = "确认签署时间类型 0 签订发起日")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String confirmSignType; private String confirmSignType;
/** /**
* 确认签署时间 * 确认签署时间
...@@ -89,6 +90,7 @@ public class TAutoContractRuleInfo extends BaseEntity { ...@@ -89,6 +90,7 @@ public class TAutoContractRuleInfo extends BaseEntity {
@Length(max = 10, message = "确认签署时间不能超过10个字符") @Length(max = 10, message = "确认签署时间不能超过10个字符")
@ExcelProperty("确认签署时间") @ExcelProperty("确认签署时间")
@Schema(description = "确认签署时间") @Schema(description = "确认签署时间")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String confirmSignDate; private String confirmSignDate;
/** /**
* 续签合同发起时间类型 0 上一份合同到期前一个月 * 续签合同发起时间类型 0 上一份合同到期前一个月
...@@ -97,6 +99,7 @@ public class TAutoContractRuleInfo extends BaseEntity { ...@@ -97,6 +99,7 @@ public class TAutoContractRuleInfo extends BaseEntity {
@Length(max = 1, message = "续签合同发起时间类型 不能超过1个字符") @Length(max = 1, message = "续签合同发起时间类型 不能超过1个字符")
@ExcelProperty("续签合同发起时间类型 ") @ExcelProperty("续签合同发起时间类型 ")
@Schema(description = "续签合同发起时间类型 0 上一份合同到期前一个月") @Schema(description = "续签合同发起时间类型 0 上一份合同到期前一个月")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String renewalDateType; private String renewalDateType;
/** /**
* 续签合同发起时间 * 续签合同发起时间
...@@ -105,6 +108,7 @@ public class TAutoContractRuleInfo extends BaseEntity { ...@@ -105,6 +108,7 @@ public class TAutoContractRuleInfo extends BaseEntity {
@Length(max = 10, message = "续签合同发起时间不能超过10个字符") @Length(max = 10, message = "续签合同发起时间不能超过10个字符")
@ExcelProperty("续签合同发起时间") @ExcelProperty("续签合同发起时间")
@Schema(description = "续签合同发起时间") @Schema(description = "续签合同发起时间")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String renewalDate; private String renewalDate;
/** /**
* 入职确认选择 0 配置方案内选择、1 自定义 2 配置方案+自定义 * 入职确认选择 0 配置方案内选择、1 自定义 2 配置方案+自定义
...@@ -113,6 +117,7 @@ public class TAutoContractRuleInfo extends BaseEntity { ...@@ -113,6 +117,7 @@ public class TAutoContractRuleInfo extends BaseEntity {
@Length(max = 1, message = "入职确认选择不能超过1个字符") @Length(max = 1, message = "入职确认选择不能超过1个字符")
@ExcelProperty("入职确认选择") @ExcelProperty("入职确认选择")
@Schema(description = "入职确认选择 0 配置方案内选择、1 自定义 2 配置方案+自定义") @Schema(description = "入职确认选择 0 配置方案内选择、1 自定义 2 配置方案+自定义")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String confirmEmpSelect; private String confirmEmpSelect;
/** /**
* 超时未确认是否触发签署任务(电子签) 0 自动触发 1 不触发 * 超时未确认是否触发签署任务(电子签) 0 自动触发 1 不触发
...@@ -121,6 +126,7 @@ public class TAutoContractRuleInfo extends BaseEntity { ...@@ -121,6 +126,7 @@ public class TAutoContractRuleInfo extends BaseEntity {
@Length(max = 1, message = "超时未确认是否触发签署任务(电子签)不能超过1个字符") @Length(max = 1, message = "超时未确认是否触发签署任务(电子签)不能超过1个字符")
@ExcelProperty("超时未确认是否触发签署任务(电子签)") @ExcelProperty("超时未确认是否触发签署任务(电子签)")
@Schema(description = "超时未确认是否触发签署任务(电子签) 0 自动触发 1 不触发") @Schema(description = "超时未确认是否触发签署任务(电子签) 0 自动触发 1 不触发")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String timeoutElecSign; private String timeoutElecSign;
/** /**
* 签署方式 0 电子签 1 线下签 * 签署方式 0 电子签 1 线下签
...@@ -130,6 +136,7 @@ public class TAutoContractRuleInfo extends BaseEntity { ...@@ -130,6 +136,7 @@ public class TAutoContractRuleInfo extends BaseEntity {
@Length(max = 1, message = "签署方式不能超过1个字符") @Length(max = 1, message = "签署方式不能超过1个字符")
@ExcelProperty("签署方式") @ExcelProperty("签署方式")
@Schema(description = "签署方式 0 电子签 1 线下签") @Schema(description = "签署方式 0 电子签 1 线下签")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String signType; private String signType;
/** /**
* 项目配置主表ID * 项目配置主表ID
...@@ -139,6 +146,7 @@ public class TAutoContractRuleInfo extends BaseEntity { ...@@ -139,6 +146,7 @@ public class TAutoContractRuleInfo extends BaseEntity {
@Length(max = 32, message = "项目配置主表ID不能超过32个字符") @Length(max = 32, message = "项目配置主表ID不能超过32个字符")
@ExcelProperty("项目配置主表ID") @ExcelProperty("项目配置主表ID")
@Schema(description = "项目配置主表ID") @Schema(description = "项目配置主表ID")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String mainId; private String mainId;
/** /**
* 项目编码 * 项目编码
...@@ -148,6 +156,7 @@ public class TAutoContractRuleInfo extends BaseEntity { ...@@ -148,6 +156,7 @@ public class TAutoContractRuleInfo extends BaseEntity {
@Length(max = 50, message = "项目编码不能超过50个字符") @Length(max = 50, message = "项目编码不能超过50个字符")
@ExcelProperty("项目编码") @ExcelProperty("项目编码")
@Schema(description = "项目编码") @Schema(description = "项目编码")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String deptNo; private String deptNo;
/** /**
* 项目ID * 项目ID
...@@ -157,6 +166,7 @@ public class TAutoContractRuleInfo extends BaseEntity { ...@@ -157,6 +166,7 @@ public class TAutoContractRuleInfo extends BaseEntity {
@Length(max = 32, message = "项目ID不能超过32个字符") @Length(max = 32, message = "项目ID不能超过32个字符")
@ExcelProperty("项目ID") @ExcelProperty("项目ID")
@Schema(description = "项目ID") @Schema(description = "项目ID")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String deptId; private String deptId;
} }
...@@ -18,9 +18,7 @@ ...@@ -18,9 +18,7 @@
package com.yifu.cloud.plus.v1.yifu.archives.entity; package com.yifu.cloud.plus.v1.yifu.archives.entity;
import com.alibaba.excel.annotation.ExcelProperty; import com.alibaba.excel.annotation.ExcelProperty;
import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.*;
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.core.constant.ExcelAttribute;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttributeConstants; import com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttributeConstants;
import com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity; import com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity;
...@@ -114,6 +112,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -114,6 +112,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 1, message = "签订期限不能超过2个字符") @Length(max = 1, message = "签订期限不能超过2个字符")
@ExcelProperty("签订期限") @ExcelProperty("签订期限")
@Schema(description = "签订期限 0 固定期限 1 无固定期限 3.以完成一定工作任务为期限") @Schema(description = "签订期限 0 固定期限 1 无固定期限 3.以完成一定工作任务为期限")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String contractTerm; private String contractTerm;
/** /**
* 合同年限-年 * 合同年限-年
...@@ -135,6 +134,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -135,6 +134,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 50, message = "合同年限-年不能超过50个字符") @Length(max = 50, message = "合同年限-年不能超过50个字符")
@ExcelProperty("合同年限-年") @ExcelProperty("合同年限-年")
@Schema(description = "合同年限-年") @Schema(description = "合同年限-年")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String contractDurationYear; private String contractDurationYear;
/** /**
* 合同年限-月 * 合同年限-月
...@@ -159,6 +159,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -159,6 +159,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 50, message = "合同年限-月不能超过50个字符") @Length(max = 50, message = "合同年限-月不能超过50个字符")
@ExcelProperty("合同年限-月") @ExcelProperty("合同年限-月")
@Schema(description = "合同年限-月") @Schema(description = "合同年限-月")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String contractDurationMonth; private String contractDurationMonth;
/** /**
* 合同开始日期 * 合同开始日期
...@@ -170,6 +171,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -170,6 +171,7 @@ public class TAutoContractScheme extends BaseEntity {
@ExcelAttribute(name = "合同开始日期") @ExcelAttribute(name = "合同开始日期")
@ExcelProperty("合同开始日期") @ExcelProperty("合同开始日期")
@Schema(description = "合同开始日期") @Schema(description = "合同开始日期")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String contractStart; private String contractStart;
/** /**
* 合同截止日期 * 合同截止日期
...@@ -183,6 +185,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -183,6 +185,7 @@ public class TAutoContractScheme extends BaseEntity {
@ExcelAttribute(name = "合同截止日期") @ExcelAttribute(name = "合同截止日期")
@ExcelProperty("合同截止日期") @ExcelProperty("合同截止日期")
@Schema(description = "合同截止日期") @Schema(description = "合同截止日期")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String contractEnd; private String contractEnd;
/** /**
* 是否有试用期 0是1否 * 是否有试用期 0是1否
...@@ -191,6 +194,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -191,6 +194,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 1, message = "是否有试用期不能超过2个字符") @Length(max = 1, message = "是否有试用期不能超过2个字符")
@ExcelProperty("是否有试用期") @ExcelProperty("是否有试用期")
@Schema(description = "是否有试用期 0是1否") @Schema(description = "是否有试用期 0是1否")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String tryPeriodType; private String tryPeriodType;
/** /**
* 试用周期 * 试用周期
...@@ -214,6 +218,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -214,6 +218,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 1, message = "试用周期不能超过2个字符") @Length(max = 1, message = "试用周期不能超过2个字符")
@ExcelProperty("试用周期") @ExcelProperty("试用周期")
@Schema(description = "试用周期") @Schema(description = "试用周期")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String tryPeriod; private String tryPeriod;
/** /**
* 试用开始日期 * 试用开始日期
...@@ -224,6 +229,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -224,6 +229,7 @@ public class TAutoContractScheme extends BaseEntity {
@ExcelAttribute(name = "试用开始日期") @ExcelAttribute(name = "试用开始日期")
@ExcelProperty("试用开始日期") @ExcelProperty("试用开始日期")
@Schema(description = "试用开始日期") @Schema(description = "试用开始日期")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String tryPeriodStart; private String tryPeriodStart;
/** /**
* 试用截止日期 * 试用截止日期
...@@ -234,6 +240,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -234,6 +240,7 @@ public class TAutoContractScheme extends BaseEntity {
@ExcelAttribute(name = "试用截止日期") @ExcelAttribute(name = "试用截止日期")
@ExcelProperty("试用截止日期") @ExcelProperty("试用截止日期")
@Schema(description = "试用截止日期") @Schema(description = "试用截止日期")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String tryPeriodEnd; private String tryPeriodEnd;
/** /**
* 工作任务 * 工作任务
...@@ -242,6 +249,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -242,6 +249,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 200, message = "工作任务不能超过200个字符") @Length(max = 200, message = "工作任务不能超过200个字符")
@ExcelProperty("工作任务") @ExcelProperty("工作任务")
@Schema(description = "工作任务") @Schema(description = "工作任务")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String task; private String task;
/** /**
* 任务类型: 0 不同员工不同任务自定义 1 所有员工任务相同 * 任务类型: 0 不同员工不同任务自定义 1 所有员工任务相同
...@@ -250,6 +258,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -250,6 +258,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 1, message = "任务类型不能超过2个字符") @Length(max = 1, message = "任务类型不能超过2个字符")
@ExcelProperty("任务类型") @ExcelProperty("任务类型")
@Schema(description = "任务类型: 0 不同员工不同任务自定义 1 所有员工任务相同") @Schema(description = "任务类型: 0 不同员工不同任务自定义 1 所有员工任务相同")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String taskType; private String taskType;
/** /**
* 结束任务标准 * 结束任务标准
...@@ -258,6 +267,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -258,6 +267,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 200, message = "结束任务标准不能超过200个字符") @Length(max = 200, message = "结束任务标准不能超过200个字符")
@ExcelProperty("结束任务标准") @ExcelProperty("结束任务标准")
@Schema(description = "结束任务标准") @Schema(description = "结束任务标准")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String taskEndStandard; private String taskEndStandard;
/** /**
* 项目配置主表ID * 项目配置主表ID
...@@ -267,6 +277,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -267,6 +277,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 32, message = "项目配置主表ID不能超过32个字符") @Length(max = 32, message = "项目配置主表ID不能超过32个字符")
@ExcelProperty("项目配置主表ID") @ExcelProperty("项目配置主表ID")
@Schema(description = "项目配置主表ID") @Schema(description = "项目配置主表ID")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String mainId; private String mainId;
/** /**
...@@ -277,6 +288,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -277,6 +288,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 50, message = "项目编码不能超过50个字符") @Length(max = 50, message = "项目编码不能超过50个字符")
@ExcelProperty("项目编码") @ExcelProperty("项目编码")
@Schema(description = "项目编码") @Schema(description = "项目编码")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String deptNo; private String deptNo;
/** /**
* 项目ID * 项目ID
...@@ -294,6 +306,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -294,6 +306,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 1, message = "合同岗位不能超过2个字符") @Length(max = 1, message = "合同岗位不能超过2个字符")
@ExcelProperty("合同岗位") @ExcelProperty("合同岗位")
@Schema(description = "合同岗位 0 固定岗位 1 等于档案处维护 2 自定义") @Schema(description = "合同岗位 0 固定岗位 1 等于档案处维护 2 自定义")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String postType; private String postType;
/** /**
* 合同岗位名称 * 合同岗位名称
...@@ -302,6 +315,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -302,6 +315,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 50, message = "合同岗位名称不能超过50个字符") @Length(max = 50, message = "合同岗位名称不能超过50个字符")
@ExcelProperty("合同岗位名称") @ExcelProperty("合同岗位名称")
@Schema(description = "合同岗位名称") @Schema(description = "合同岗位名称")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String post; private String post;
/** /**
* 工作地点 * 工作地点
...@@ -310,6 +324,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -310,6 +324,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 200, message = "工作地点不能超过200个字符") @Length(max = 200, message = "工作地点不能超过200个字符")
@ExcelProperty("工作地点") @ExcelProperty("工作地点")
@Schema(description = "工作地点") @Schema(description = "工作地点")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String workAddress; private String workAddress;
/** /**
* 工时制 * 工时制
...@@ -323,6 +338,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -323,6 +338,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 1, message = "工时制不能超过2个字符") @Length(max = 1, message = "工时制不能超过2个字符")
@ExcelProperty("工时制") @ExcelProperty("工时制")
@Schema(description = "工时制 0 标准工时 1综合工时 2 不定时工时制") @Schema(description = "工时制 0 标准工时 1综合工时 2 不定时工时制")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String workingHours; private String workingHours;
/** /**
* 试用期工资(元/月) * 试用期工资(元/月)
...@@ -331,6 +347,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -331,6 +347,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 20, message = "试用期工资(元/月)不能超过20个字符") @Length(max = 20, message = "试用期工资(元/月)不能超过20个字符")
@ExcelProperty("试用期工资(元/月)") @ExcelProperty("试用期工资(元/月)")
@Schema(description = "试用期工资(元/月)") @Schema(description = "试用期工资(元/月)")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String workingReward; private String workingReward;
/** /**
* 工作部门 * 工作部门
...@@ -339,6 +356,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -339,6 +356,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 50, message = "工作部门不能超过50个字符") @Length(max = 50, message = "工作部门不能超过50个字符")
@ExcelProperty("工作部门") @ExcelProperty("工作部门")
@Schema(description = "工作部门") @Schema(description = "工作部门")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String workingDept; private String workingDept;
/** /**
* 用工单位名称 * 用工单位名称
...@@ -347,6 +365,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -347,6 +365,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 50, message = "用工单位名称不能超过50个字符") @Length(max = 50, message = "用工单位名称不能超过50个字符")
@ExcelProperty("用工单位名称") @ExcelProperty("用工单位名称")
@Schema(description = "用工单位名称") @Schema(description = "用工单位名称")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String workingCompany; private String workingCompany;
/** /**
* 工资形式 1.计时工资 2.计件工资 3.其他 * 工资形式 1.计时工资 2.计件工资 3.其他
...@@ -355,6 +374,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -355,6 +374,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 1, message = "工资形式不能超过2个字符") @Length(max = 1, message = "工资形式不能超过2个字符")
@ExcelProperty("工资形式") @ExcelProperty("工资形式")
@Schema(description = "工资形式 1.计时工资 2.计件工资 3.其他") @Schema(description = "工资形式 1.计时工资 2.计件工资 3.其他")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String salaryType; private String salaryType;
/** /**
* 购买补充保险说明 * 购买补充保险说明
...@@ -363,6 +383,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -363,6 +383,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 50, message = "购买补充保险说明不能超过50个字符") @Length(max = 50, message = "购买补充保险说明不能超过50个字符")
@ExcelProperty("购买补充保险说明") @ExcelProperty("购买补充保险说明")
@Schema(description = "购买补充保险说明") @Schema(description = "购买补充保险说明")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String riskBuyDesc; private String riskBuyDesc;
/** /**
* 计时工资标准(元/月) * 计时工资标准(元/月)
...@@ -371,6 +392,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -371,6 +392,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 20, message = "计时工资标准(元/月)不能超过20个字符") @Length(max = 20, message = "计时工资标准(元/月)不能超过20个字符")
@ExcelProperty("计时工资标准(元/月)") @ExcelProperty("计时工资标准(元/月)")
@Schema(description = "计时工资标准(元/月)") @Schema(description = "计时工资标准(元/月)")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String hourlyWage; private String hourlyWage;
/** /**
* 计件工资单价(元) * 计件工资单价(元)
...@@ -379,6 +401,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -379,6 +401,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 20, message = "计件工资单价(元)不能超过20个字符") @Length(max = 20, message = "计件工资单价(元)不能超过20个字符")
@ExcelProperty("计件工资单价(元)") @ExcelProperty("计件工资单价(元)")
@Schema(description = "计件工资单价(元)") @Schema(description = "计件工资单价(元)")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String pieceworkWage; private String pieceworkWage;
/** /**
* 其他 (工资形式其他时的工资) * 其他 (工资形式其他时的工资)
...@@ -390,6 +413,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -390,6 +413,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 50, message = "其他不能超过50个字符") @Length(max = 50, message = "其他不能超过50个字符")
@ExcelProperty("其他") @ExcelProperty("其他")
@Schema(description = "其他 (工资形式其他时的工资)") @Schema(description = "其他 (工资形式其他时的工资)")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String otherWage; private String otherWage;
/** /**
* 劳务费(元/月) * 劳务费(元/月)
...@@ -398,6 +422,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -398,6 +422,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 20, message = "劳务费(元/月)不能超过20个字符") @Length(max = 20, message = "劳务费(元/月)不能超过20个字符")
@ExcelProperty("劳务费(元/月)") @ExcelProperty("劳务费(元/月)")
@Schema(description = "劳务费(元/月)") @Schema(description = "劳务费(元/月)")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String laborCost; private String laborCost;
/** /**
* 违约责任(金额) * 违约责任(金额)
...@@ -406,6 +431,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -406,6 +431,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 20, message = "违约责任(金额)不能超过20个字符") @Length(max = 20, message = "违约责任(金额)不能超过20个字符")
@ExcelProperty("违约责任(金额)") @ExcelProperty("违约责任(金额)")
@Schema(description = "违约责任(金额)") @Schema(description = "违约责任(金额)")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String defaultAmount; private String defaultAmount;
/** /**
* 工资结算周期 * 工资结算周期
...@@ -414,6 +440,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -414,6 +440,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 20, message = "工资结算周期不能超过20个字符") @Length(max = 20, message = "工资结算周期不能超过20个字符")
@ExcelProperty("工资结算周期") @ExcelProperty("工资结算周期")
@Schema(description = "工资结算周期") @Schema(description = "工资结算周期")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String settlementCycle; private String settlementCycle;
/** /**
* 工资发放时间 * 工资发放时间
...@@ -422,6 +449,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -422,6 +449,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 50, message = "工资发放时间不能超过50个字符") @Length(max = 50, message = "工资发放时间不能超过50个字符")
@ExcelProperty("工资发放时间") @ExcelProperty("工资发放时间")
@Schema(description = "工资发放时间") @Schema(description = "工资发放时间")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String paymentTime; private String paymentTime;
/** /**
* 工资发放方式 0 * 工资发放方式 0
...@@ -434,6 +462,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -434,6 +462,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 1, message = "工资发放方式不能超过2个字符") @Length(max = 1, message = "工资发放方式不能超过2个字符")
@ExcelProperty("工资发放方式") @ExcelProperty("工资发放方式")
@Schema(description = "工资发放方式 0 直接发放/委托银行代发") @Schema(description = "工资发放方式 0 直接发放/委托银行代发")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String paymentType; private String paymentType;
/** /**
* 实习期限 无/一个月/两个月.../十二个月 * 实习期限 无/一个月/两个月.../十二个月
...@@ -457,6 +486,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -457,6 +486,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 1, message = "实习期限不能超过2个字符") @Length(max = 1, message = "实习期限不能超过2个字符")
@ExcelProperty("实习期限") @ExcelProperty("实习期限")
@Schema(description = "实习期限 无/一个月/两个月.../十二个月") @Schema(description = "实习期限 无/一个月/两个月.../十二个月")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String internshipPeriod; private String internshipPeriod;
/** /**
* 实习开始日期 * 实习开始日期
...@@ -467,6 +497,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -467,6 +497,7 @@ public class TAutoContractScheme extends BaseEntity {
@ExcelAttribute(name = "实习开始日期") @ExcelAttribute(name = "实习开始日期")
@ExcelProperty("实习开始日期") @ExcelProperty("实习开始日期")
@Schema(description = "实习开始日期") @Schema(description = "实习开始日期")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String internshipPeriodStart; private String internshipPeriodStart;
/** /**
* 实习结束日期 * 实习结束日期
...@@ -477,6 +508,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -477,6 +508,7 @@ public class TAutoContractScheme extends BaseEntity {
@ExcelAttribute(name = "实习结束日期") @ExcelAttribute(name = "实习结束日期")
@ExcelProperty("实习结束日期") @ExcelProperty("实习结束日期")
@Schema(description = "实习结束日期") @Schema(description = "实习结束日期")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String internshipPeriodEnd; private String internshipPeriodEnd;
/** /**
* 派遣期限年 * 派遣期限年
...@@ -497,6 +529,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -497,6 +529,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 1, message = "派遣期限-年不能超过2个字符") @Length(max = 1, message = "派遣期限-年不能超过2个字符")
@ExcelProperty("派遣期限-年") @ExcelProperty("派遣期限-年")
@Schema(description = "派遣期限-年") @Schema(description = "派遣期限-年")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String dispatchPeriodYear; private String dispatchPeriodYear;
/** /**
* 派遣期限-月 * 派遣期限-月
...@@ -520,6 +553,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -520,6 +553,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 1, message = "派遣期限-月不能超过2个字符") @Length(max = 1, message = "派遣期限-月不能超过2个字符")
@ExcelProperty("派遣期限-月") @ExcelProperty("派遣期限-月")
@Schema(description = "派遣期限-月") @Schema(description = "派遣期限-月")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String dispatchPeriodMonth; private String dispatchPeriodMonth;
/** /**
* 派遣开始日期 * 派遣开始日期
...@@ -530,6 +564,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -530,6 +564,7 @@ public class TAutoContractScheme extends BaseEntity {
@ExcelAttribute(name = "派遣开始日期") @ExcelAttribute(name = "派遣开始日期")
@ExcelProperty("派遣开始日期") @ExcelProperty("派遣开始日期")
@Schema(description = "派遣开始日期") @Schema(description = "派遣开始日期")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String dispatchPeriodStart; private String dispatchPeriodStart;
/** /**
* 派遣结束日期 * 派遣结束日期
...@@ -540,6 +575,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -540,6 +575,7 @@ public class TAutoContractScheme extends BaseEntity {
@ExcelAttribute(name = "派遣结束日期") @ExcelAttribute(name = "派遣结束日期")
@ExcelProperty("派遣结束日期") @ExcelProperty("派遣结束日期")
@Schema(description = "派遣结束日期") @Schema(description = "派遣结束日期")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String dispatchPeriodEnd; private String dispatchPeriodEnd;
/** /**
* 工作方式 0 第一种方式 1 第二种方式 * 工作方式 0 第一种方式 1 第二种方式
...@@ -548,6 +584,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -548,6 +584,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 50, message = "工作方式不能超过50个字符") @Length(max = 50, message = "工作方式不能超过50个字符")
@ExcelProperty("工作方式") @ExcelProperty("工作方式")
@Schema(description = "工作方式 0 第一种方式 1 第二种方式") @Schema(description = "工作方式 0 第一种方式 1 第二种方式")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String workType; private String workType;
/** /**
* 每周工作天数 * 每周工作天数
...@@ -556,6 +593,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -556,6 +593,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 10, message = "每周工作天数不能超过10个字符") @Length(max = 10, message = "每周工作天数不能超过10个字符")
@ExcelProperty("每周工作天数") @ExcelProperty("每周工作天数")
@Schema(description = "每周工作天数") @Schema(description = "每周工作天数")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String workDayCount; private String workDayCount;
/** /**
* 每周工作日 * 每周工作日
...@@ -564,6 +602,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -564,6 +602,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 50, message = "每周工作日不能超过50个字符") @Length(max = 50, message = "每周工作日不能超过50个字符")
@ExcelProperty("每周工作日") @ExcelProperty("每周工作日")
@Schema(description = "每周工作日") @Schema(description = "每周工作日")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String workDay; private String workDay;
/** /**
* 每日工作时长 * 每日工作时长
...@@ -572,6 +611,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -572,6 +611,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 10, message = "每日工作时长不能超过10个字符") @Length(max = 10, message = "每日工作时长不能超过10个字符")
@ExcelProperty("每日工作时长") @ExcelProperty("每日工作时长")
@Schema(description = "每日工作时长") @Schema(description = "每日工作时长")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String workHours; private String workHours;
/** /**
* 其他工作时间 (工作方式为第二种方式) * 其他工作时间 (工作方式为第二种方式)
...@@ -583,6 +623,7 @@ public class TAutoContractScheme extends BaseEntity { ...@@ -583,6 +623,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length(max = 50, message = "其他工作时间 不能超过50个字符") @Length(max = 50, message = "其他工作时间 不能超过50个字符")
@ExcelProperty("其他工作时间 ") @ExcelProperty("其他工作时间 ")
@Schema(description = "其他工作时间 (工作方式为第二种方式)") @Schema(description = "其他工作时间 (工作方式为第二种方式)")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String otherWorkDay; private String otherWorkDay;
} }
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