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
a1c0d086
Commit
a1c0d086
authored
Jun 27, 2025
by
fangxinjiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
代码优化-fxj
parent
4e2f6000
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
14 deletions
+7
-14
TAutoContractRuleInfo.java
...d/plus/v1/yifu/archives/entity/TAutoContractRuleInfo.java
+7
-14
No files found.
yifu-archives/yifu-archives-api/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/entity/TAutoContractRuleInfo.java
View file @
a1c0d086
...
...
@@ -52,17 +52,15 @@ public class TAutoContractRuleInfo extends BaseEntity {
/**
* 是否自动触发申请:0自动生成合同申请 1手动发起合同申请
*/
@ExcelAttribute
(
name
=
"是否自动触发申请"
,
isNotEmpty
=
true
,
errorInfo
=
"是否自动触发申请不能为空"
,
maxLength
=
1
)
@ExcelAttribute
(
name
=
"是否自动触发申请"
,
isNotEmpty
=
true
,
errorInfo
=
"是否自动触发申请不能为空"
)
@NotBlank
(
message
=
"是否自动触发申请不能为空"
)
@Length
(
max
=
1
,
message
=
"是否自动触发申请不能超过1个字符"
)
@ExcelProperty
(
"是否自动触发申请"
)
@Schema
(
description
=
"是否自动触发申请:0自动生成合同申请 1手动发起合同申请"
)
private
String
autoFlag
;
/**
* 新签合同发起时间类型 0 入职日期 3入职3天后 7入职1周后 14入职2周后 21入职3周后
*/
@ExcelAttribute
(
name
=
"新签合同发起时间类型 "
,
maxLength
=
1
)
@Length
(
max
=
1
,
message
=
"新签合同发起时间类型 不能超过1个字符"
)
@ExcelAttribute
(
name
=
"新签合同发起时间类型 "
)
@ExcelProperty
(
"新签合同发起时间类型 "
)
@Schema
(
description
=
"新签合同发起时间类型 0 入职日期 3入职3天后 7入职1周后 14入职2周后 21入职3周后"
)
private
String
newSignType
;
...
...
@@ -77,8 +75,7 @@ public class TAutoContractRuleInfo extends BaseEntity {
/**
* 确认签署时间类型 0 签订发起日
*/
@ExcelAttribute
(
name
=
"确认签署时间类型 "
,
maxLength
=
1
)
@Length
(
max
=
1
,
message
=
"确认签署时间类型 不能超过1个字符"
)
@ExcelAttribute
(
name
=
"确认签署时间类型 "
)
@ExcelProperty
(
"确认签署时间类型 "
)
@Schema
(
description
=
"确认签署时间类型 0 签订发起日"
)
private
String
confirmSignType
;
...
...
@@ -93,8 +90,7 @@ public class TAutoContractRuleInfo extends BaseEntity {
/**
* 续签合同发起时间类型 0 上一份合同到期前一个月
*/
@ExcelAttribute
(
name
=
"续签合同发起时间类型 "
,
maxLength
=
1
)
@Length
(
max
=
1
,
message
=
"续签合同发起时间类型 不能超过1个字符"
)
@ExcelAttribute
(
name
=
"续签合同发起时间类型 "
)
@ExcelProperty
(
"续签合同发起时间类型 "
)
@Schema
(
description
=
"续签合同发起时间类型 0 上一份合同到期前一个月"
)
private
String
renewalDateType
;
...
...
@@ -109,25 +105,22 @@ public class TAutoContractRuleInfo extends BaseEntity {
/**
* 入职确认选择 0 配置方案内选择、1 自定义 2 配置方案+自定义
*/
@ExcelAttribute
(
name
=
"入职确认选择"
,
maxLength
=
1
)
@Length
(
max
=
1
,
message
=
"入职确认选择不能超过1个字符"
)
@ExcelAttribute
(
name
=
"入职确认选择"
)
@ExcelProperty
(
"入职确认选择"
)
@Schema
(
description
=
"入职确认选择 0 配置方案内选择、1 自定义 2 配置方案+自定义"
)
private
String
confirmEmpSelect
;
/**
* 超时未确认是否触发签署任务(电子签) 0 自动触发 1 不触发
*/
@ExcelAttribute
(
name
=
"超时未确认是否触发签署任务(电子签)"
,
maxLength
=
1
)
@Length
(
max
=
1
,
message
=
"超时未确认是否触发签署任务(电子签)不能超过1个字符"
)
@ExcelAttribute
(
name
=
"超时未确认是否触发签署任务(电子签)"
)
@ExcelProperty
(
"超时未确认是否触发签署任务(电子签)"
)
@Schema
(
description
=
"超时未确认是否触发签署任务(电子签) 0 自动触发 1 不触发"
)
private
String
timeoutElecSign
;
/**
* 签署方式 0 电子签 1 线下签
*/
@ExcelAttribute
(
name
=
"签署方式"
,
isNotEmpty
=
true
,
errorInfo
=
"签署方式不能为空"
,
maxLength
=
1
)
@ExcelAttribute
(
name
=
"签署方式"
,
isNotEmpty
=
true
,
errorInfo
=
"签署方式不能为空"
)
@NotBlank
(
message
=
"签署方式不能为空"
)
@Length
(
max
=
1
,
message
=
"签署方式不能超过1个字符"
)
@ExcelProperty
(
"签署方式"
)
@Schema
(
description
=
"签署方式 0 电子签 1 线下签"
)
private
String
signType
;
...
...
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