Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yifu-mvp
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fangxinjiang
yifu-mvp
Commits
ed01923f
Commit
ed01923f
authored
Jun 25, 2025
by
fangxinjiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
代码优化-fxj
parent
67ee0445
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
57 additions
and
6 deletions
+57
-6
TAutoContractRuleInfo.java
...d/plus/v1/yifu/archives/entity/TAutoContractRuleInfo.java
+13
-3
TAutoContractScheme.java
...oud/plus/v1/yifu/archives/entity/TAutoContractScheme.java
+44
-3
No files found.
yifu-archives/yifu-archives-api/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/entity/TAutoContractRuleInfo.java
View file @
ed01923f
...
...
@@ -18,9 +18,7 @@
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.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
;
...
...
@@ -65,6 +63,7 @@ public class TAutoContractRuleInfo extends BaseEntity {
@Length
(
max
=
1
,
message
=
"新签合同发起时间类型 不能超过1个字符"
)
@ExcelProperty
(
"新签合同发起时间类型 "
)
@Schema
(
description
=
"新签合同发起时间类型 0 入职日期 1入职3天后 2入职1周后 3入职2周后 4入职3周后"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
newSignType
;
/**
* 新签合同发起时间
...
...
@@ -73,6 +72,7 @@ public class TAutoContractRuleInfo extends BaseEntity {
@Length
(
max
=
10
,
message
=
"新签合同发起时间不能超过10个字符"
)
@ExcelProperty
(
"新签合同发起时间"
)
@Schema
(
description
=
"新签合同发起时间"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
newSignDate
;
/**
* 确认签署时间类型 0 签订发起日
...
...
@@ -81,6 +81,7 @@ public class TAutoContractRuleInfo extends BaseEntity {
@Length
(
max
=
1
,
message
=
"确认签署时间类型 不能超过1个字符"
)
@ExcelProperty
(
"确认签署时间类型 "
)
@Schema
(
description
=
"确认签署时间类型 0 签订发起日"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
confirmSignType
;
/**
* 确认签署时间
...
...
@@ -89,6 +90,7 @@ public class TAutoContractRuleInfo extends BaseEntity {
@Length
(
max
=
10
,
message
=
"确认签署时间不能超过10个字符"
)
@ExcelProperty
(
"确认签署时间"
)
@Schema
(
description
=
"确认签署时间"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
confirmSignDate
;
/**
* 续签合同发起时间类型 0 上一份合同到期前一个月
...
...
@@ -97,6 +99,7 @@ public class TAutoContractRuleInfo extends BaseEntity {
@Length
(
max
=
1
,
message
=
"续签合同发起时间类型 不能超过1个字符"
)
@ExcelProperty
(
"续签合同发起时间类型 "
)
@Schema
(
description
=
"续签合同发起时间类型 0 上一份合同到期前一个月"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
renewalDateType
;
/**
* 续签合同发起时间
...
...
@@ -105,6 +108,7 @@ public class TAutoContractRuleInfo extends BaseEntity {
@Length
(
max
=
10
,
message
=
"续签合同发起时间不能超过10个字符"
)
@ExcelProperty
(
"续签合同发起时间"
)
@Schema
(
description
=
"续签合同发起时间"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
renewalDate
;
/**
* 入职确认选择 0 配置方案内选择、1 自定义 2 配置方案+自定义
...
...
@@ -113,6 +117,7 @@ public class TAutoContractRuleInfo extends BaseEntity {
@Length
(
max
=
1
,
message
=
"入职确认选择不能超过1个字符"
)
@ExcelProperty
(
"入职确认选择"
)
@Schema
(
description
=
"入职确认选择 0 配置方案内选择、1 自定义 2 配置方案+自定义"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
confirmEmpSelect
;
/**
* 超时未确认是否触发签署任务(电子签) 0 自动触发 1 不触发
...
...
@@ -121,6 +126,7 @@ public class TAutoContractRuleInfo extends BaseEntity {
@Length
(
max
=
1
,
message
=
"超时未确认是否触发签署任务(电子签)不能超过1个字符"
)
@ExcelProperty
(
"超时未确认是否触发签署任务(电子签)"
)
@Schema
(
description
=
"超时未确认是否触发签署任务(电子签) 0 自动触发 1 不触发"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
timeoutElecSign
;
/**
* 签署方式 0 电子签 1 线下签
...
...
@@ -130,6 +136,7 @@ public class TAutoContractRuleInfo extends BaseEntity {
@Length
(
max
=
1
,
message
=
"签署方式不能超过1个字符"
)
@ExcelProperty
(
"签署方式"
)
@Schema
(
description
=
"签署方式 0 电子签 1 线下签"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
signType
;
/**
* 项目配置主表ID
...
...
@@ -139,6 +146,7 @@ public class TAutoContractRuleInfo extends BaseEntity {
@Length
(
max
=
32
,
message
=
"项目配置主表ID不能超过32个字符"
)
@ExcelProperty
(
"项目配置主表ID"
)
@Schema
(
description
=
"项目配置主表ID"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
mainId
;
/**
* 项目编码
...
...
@@ -148,6 +156,7 @@ public class TAutoContractRuleInfo extends BaseEntity {
@Length
(
max
=
50
,
message
=
"项目编码不能超过50个字符"
)
@ExcelProperty
(
"项目编码"
)
@Schema
(
description
=
"项目编码"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
deptNo
;
/**
* 项目ID
...
...
@@ -157,6 +166,7 @@ public class TAutoContractRuleInfo extends BaseEntity {
@Length
(
max
=
32
,
message
=
"项目ID不能超过32个字符"
)
@ExcelProperty
(
"项目ID"
)
@Schema
(
description
=
"项目ID"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
deptId
;
}
yifu-archives/yifu-archives-api/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/entity/TAutoContractScheme.java
View file @
ed01923f
...
...
@@ -18,9 +18,7 @@
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.baomidou.mybatisplus.annotation.*
;
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.mybatis.base.BaseEntity
;
...
...
@@ -114,6 +112,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
1
,
message
=
"签订期限不能超过2个字符"
)
@ExcelProperty
(
"签订期限"
)
@Schema
(
description
=
"签订期限 0 固定期限 1 无固定期限 3.以完成一定工作任务为期限"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
contractTerm
;
/**
* 合同年限-年
...
...
@@ -135,6 +134,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
50
,
message
=
"合同年限-年不能超过50个字符"
)
@ExcelProperty
(
"合同年限-年"
)
@Schema
(
description
=
"合同年限-年"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
contractDurationYear
;
/**
* 合同年限-月
...
...
@@ -159,6 +159,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
50
,
message
=
"合同年限-月不能超过50个字符"
)
@ExcelProperty
(
"合同年限-月"
)
@Schema
(
description
=
"合同年限-月"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
contractDurationMonth
;
/**
* 合同开始日期
...
...
@@ -170,6 +171,7 @@ public class TAutoContractScheme extends BaseEntity {
@ExcelAttribute
(
name
=
"合同开始日期"
)
@ExcelProperty
(
"合同开始日期"
)
@Schema
(
description
=
"合同开始日期"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
contractStart
;
/**
* 合同截止日期
...
...
@@ -183,6 +185,7 @@ public class TAutoContractScheme extends BaseEntity {
@ExcelAttribute
(
name
=
"合同截止日期"
)
@ExcelProperty
(
"合同截止日期"
)
@Schema
(
description
=
"合同截止日期"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
contractEnd
;
/**
* 是否有试用期 0是1否
...
...
@@ -191,6 +194,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
1
,
message
=
"是否有试用期不能超过2个字符"
)
@ExcelProperty
(
"是否有试用期"
)
@Schema
(
description
=
"是否有试用期 0是1否"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
tryPeriodType
;
/**
* 试用周期
...
...
@@ -214,6 +218,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
1
,
message
=
"试用周期不能超过2个字符"
)
@ExcelProperty
(
"试用周期"
)
@Schema
(
description
=
"试用周期"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
tryPeriod
;
/**
* 试用开始日期
...
...
@@ -224,6 +229,7 @@ public class TAutoContractScheme extends BaseEntity {
@ExcelAttribute
(
name
=
"试用开始日期"
)
@ExcelProperty
(
"试用开始日期"
)
@Schema
(
description
=
"试用开始日期"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
tryPeriodStart
;
/**
* 试用截止日期
...
...
@@ -234,6 +240,7 @@ public class TAutoContractScheme extends BaseEntity {
@ExcelAttribute
(
name
=
"试用截止日期"
)
@ExcelProperty
(
"试用截止日期"
)
@Schema
(
description
=
"试用截止日期"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
tryPeriodEnd
;
/**
* 工作任务
...
...
@@ -242,6 +249,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
200
,
message
=
"工作任务不能超过200个字符"
)
@ExcelProperty
(
"工作任务"
)
@Schema
(
description
=
"工作任务"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
task
;
/**
* 任务类型: 0 不同员工不同任务自定义 1 所有员工任务相同
...
...
@@ -250,6 +258,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
1
,
message
=
"任务类型不能超过2个字符"
)
@ExcelProperty
(
"任务类型"
)
@Schema
(
description
=
"任务类型: 0 不同员工不同任务自定义 1 所有员工任务相同"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
taskType
;
/**
* 结束任务标准
...
...
@@ -258,6 +267,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
200
,
message
=
"结束任务标准不能超过200个字符"
)
@ExcelProperty
(
"结束任务标准"
)
@Schema
(
description
=
"结束任务标准"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
taskEndStandard
;
/**
* 项目配置主表ID
...
...
@@ -267,6 +277,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
32
,
message
=
"项目配置主表ID不能超过32个字符"
)
@ExcelProperty
(
"项目配置主表ID"
)
@Schema
(
description
=
"项目配置主表ID"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
mainId
;
/**
...
...
@@ -277,6 +288,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
50
,
message
=
"项目编码不能超过50个字符"
)
@ExcelProperty
(
"项目编码"
)
@Schema
(
description
=
"项目编码"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
deptNo
;
/**
* 项目ID
...
...
@@ -294,6 +306,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
1
,
message
=
"合同岗位不能超过2个字符"
)
@ExcelProperty
(
"合同岗位"
)
@Schema
(
description
=
"合同岗位 0 固定岗位 1 等于档案处维护 2 自定义"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
postType
;
/**
* 合同岗位名称
...
...
@@ -302,6 +315,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
50
,
message
=
"合同岗位名称不能超过50个字符"
)
@ExcelProperty
(
"合同岗位名称"
)
@Schema
(
description
=
"合同岗位名称"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
post
;
/**
* 工作地点
...
...
@@ -310,6 +324,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
200
,
message
=
"工作地点不能超过200个字符"
)
@ExcelProperty
(
"工作地点"
)
@Schema
(
description
=
"工作地点"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
workAddress
;
/**
* 工时制
...
...
@@ -323,6 +338,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
1
,
message
=
"工时制不能超过2个字符"
)
@ExcelProperty
(
"工时制"
)
@Schema
(
description
=
"工时制 0 标准工时 1综合工时 2 不定时工时制"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
workingHours
;
/**
* 试用期工资(元/月)
...
...
@@ -331,6 +347,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
20
,
message
=
"试用期工资(元/月)不能超过20个字符"
)
@ExcelProperty
(
"试用期工资(元/月)"
)
@Schema
(
description
=
"试用期工资(元/月)"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
workingReward
;
/**
* 工作部门
...
...
@@ -339,6 +356,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
50
,
message
=
"工作部门不能超过50个字符"
)
@ExcelProperty
(
"工作部门"
)
@Schema
(
description
=
"工作部门"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
workingDept
;
/**
* 用工单位名称
...
...
@@ -347,6 +365,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
50
,
message
=
"用工单位名称不能超过50个字符"
)
@ExcelProperty
(
"用工单位名称"
)
@Schema
(
description
=
"用工单位名称"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
workingCompany
;
/**
* 工资形式 1.计时工资 2.计件工资 3.其他
...
...
@@ -355,6 +374,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
1
,
message
=
"工资形式不能超过2个字符"
)
@ExcelProperty
(
"工资形式"
)
@Schema
(
description
=
"工资形式 1.计时工资 2.计件工资 3.其他"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
salaryType
;
/**
* 购买补充保险说明
...
...
@@ -363,6 +383,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
50
,
message
=
"购买补充保险说明不能超过50个字符"
)
@ExcelProperty
(
"购买补充保险说明"
)
@Schema
(
description
=
"购买补充保险说明"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
riskBuyDesc
;
/**
* 计时工资标准(元/月)
...
...
@@ -371,6 +392,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
20
,
message
=
"计时工资标准(元/月)不能超过20个字符"
)
@ExcelProperty
(
"计时工资标准(元/月)"
)
@Schema
(
description
=
"计时工资标准(元/月)"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
hourlyWage
;
/**
* 计件工资单价(元)
...
...
@@ -379,6 +401,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
20
,
message
=
"计件工资单价(元)不能超过20个字符"
)
@ExcelProperty
(
"计件工资单价(元)"
)
@Schema
(
description
=
"计件工资单价(元)"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
pieceworkWage
;
/**
* 其他 (工资形式其他时的工资)
...
...
@@ -390,6 +413,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
50
,
message
=
"其他不能超过50个字符"
)
@ExcelProperty
(
"其他"
)
@Schema
(
description
=
"其他 (工资形式其他时的工资)"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
otherWage
;
/**
* 劳务费(元/月)
...
...
@@ -398,6 +422,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
20
,
message
=
"劳务费(元/月)不能超过20个字符"
)
@ExcelProperty
(
"劳务费(元/月)"
)
@Schema
(
description
=
"劳务费(元/月)"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
laborCost
;
/**
* 违约责任(金额)
...
...
@@ -406,6 +431,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
20
,
message
=
"违约责任(金额)不能超过20个字符"
)
@ExcelProperty
(
"违约责任(金额)"
)
@Schema
(
description
=
"违约责任(金额)"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
defaultAmount
;
/**
* 工资结算周期
...
...
@@ -414,6 +440,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
20
,
message
=
"工资结算周期不能超过20个字符"
)
@ExcelProperty
(
"工资结算周期"
)
@Schema
(
description
=
"工资结算周期"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
settlementCycle
;
/**
* 工资发放时间
...
...
@@ -422,6 +449,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
50
,
message
=
"工资发放时间不能超过50个字符"
)
@ExcelProperty
(
"工资发放时间"
)
@Schema
(
description
=
"工资发放时间"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
paymentTime
;
/**
* 工资发放方式 0
...
...
@@ -434,6 +462,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
1
,
message
=
"工资发放方式不能超过2个字符"
)
@ExcelProperty
(
"工资发放方式"
)
@Schema
(
description
=
"工资发放方式 0 直接发放/委托银行代发"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
paymentType
;
/**
* 实习期限 无/一个月/两个月.../十二个月
...
...
@@ -457,6 +486,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
1
,
message
=
"实习期限不能超过2个字符"
)
@ExcelProperty
(
"实习期限"
)
@Schema
(
description
=
"实习期限 无/一个月/两个月.../十二个月"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
internshipPeriod
;
/**
* 实习开始日期
...
...
@@ -467,6 +497,7 @@ public class TAutoContractScheme extends BaseEntity {
@ExcelAttribute
(
name
=
"实习开始日期"
)
@ExcelProperty
(
"实习开始日期"
)
@Schema
(
description
=
"实习开始日期"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
internshipPeriodStart
;
/**
* 实习结束日期
...
...
@@ -477,6 +508,7 @@ public class TAutoContractScheme extends BaseEntity {
@ExcelAttribute
(
name
=
"实习结束日期"
)
@ExcelProperty
(
"实习结束日期"
)
@Schema
(
description
=
"实习结束日期"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
internshipPeriodEnd
;
/**
* 派遣期限年
...
...
@@ -497,6 +529,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
1
,
message
=
"派遣期限-年不能超过2个字符"
)
@ExcelProperty
(
"派遣期限-年"
)
@Schema
(
description
=
"派遣期限-年"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
dispatchPeriodYear
;
/**
* 派遣期限-月
...
...
@@ -520,6 +553,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
1
,
message
=
"派遣期限-月不能超过2个字符"
)
@ExcelProperty
(
"派遣期限-月"
)
@Schema
(
description
=
"派遣期限-月"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
dispatchPeriodMonth
;
/**
* 派遣开始日期
...
...
@@ -530,6 +564,7 @@ public class TAutoContractScheme extends BaseEntity {
@ExcelAttribute
(
name
=
"派遣开始日期"
)
@ExcelProperty
(
"派遣开始日期"
)
@Schema
(
description
=
"派遣开始日期"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
dispatchPeriodStart
;
/**
* 派遣结束日期
...
...
@@ -540,6 +575,7 @@ public class TAutoContractScheme extends BaseEntity {
@ExcelAttribute
(
name
=
"派遣结束日期"
)
@ExcelProperty
(
"派遣结束日期"
)
@Schema
(
description
=
"派遣结束日期"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
dispatchPeriodEnd
;
/**
* 工作方式 0 第一种方式 1 第二种方式
...
...
@@ -548,6 +584,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
50
,
message
=
"工作方式不能超过50个字符"
)
@ExcelProperty
(
"工作方式"
)
@Schema
(
description
=
"工作方式 0 第一种方式 1 第二种方式"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
workType
;
/**
* 每周工作天数
...
...
@@ -556,6 +593,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
10
,
message
=
"每周工作天数不能超过10个字符"
)
@ExcelProperty
(
"每周工作天数"
)
@Schema
(
description
=
"每周工作天数"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
workDayCount
;
/**
* 每周工作日
...
...
@@ -564,6 +602,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
50
,
message
=
"每周工作日不能超过50个字符"
)
@ExcelProperty
(
"每周工作日"
)
@Schema
(
description
=
"每周工作日"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
workDay
;
/**
* 每日工作时长
...
...
@@ -572,6 +611,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
10
,
message
=
"每日工作时长不能超过10个字符"
)
@ExcelProperty
(
"每日工作时长"
)
@Schema
(
description
=
"每日工作时长"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
workHours
;
/**
* 其他工作时间 (工作方式为第二种方式)
...
...
@@ -583,6 +623,7 @@ public class TAutoContractScheme extends BaseEntity {
@Length
(
max
=
50
,
message
=
"其他工作时间 不能超过50个字符"
)
@ExcelProperty
(
"其他工作时间 "
)
@Schema
(
description
=
"其他工作时间 (工作方式为第二种方式)"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
otherWorkDay
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment