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
13d0a983
You need to sign in or sign up before continuing.
Commit
13d0a983
authored
Apr 23, 2026
by
fangxinjiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
入职确认接收和修改合同优化-fxj
parent
a33e355b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
65 additions
and
58 deletions
+65
-58
TContractPreDetail.java
...loud/plus/v1/yifu/archives/entity/TContractPreDetail.java
+32
-32
TContractPreDetailVo.java
.../cloud/plus/v1/yifu/archives/vo/TContractPreDetailVo.java
+33
-26
No files found.
yifu-archives/yifu-archives-api/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/entity/TContractPreDetail.java
View file @
13d0a983
...
...
@@ -12,6 +12,7 @@ import lombok.Data;
import
lombok.EqualsAndHashCode
;
import
org.hibernate.validator.constraints.Length
;
import
javax.validation.constraints.NotBlank
;
import
java.util.Date
;
/**
...
...
@@ -50,7 +51,7 @@ public class TContractPreDetail extends BaseEntity {
@Length
(
max
=
100
,
message
=
"申请人不能超过100个字符"
)
@ExcelProperty
(
"申请人"
)
@Schema
(
description
=
"申请人"
)
private
String
applicant
Name
;
private
String
create
Name
;
/**
* 申请时间
...
...
@@ -59,16 +60,26 @@ public class TContractPreDetail extends BaseEntity {
@ExcelAttribute
(
name
=
"申请时间"
)
@ExcelProperty
(
"申请时间"
)
@Schema
(
description
=
"申请时间"
)
private
Date
apply
Time
;
private
Date
create
Time
;
/**
* 档案
所在地
* 档案
-省
*/
@ExcelAttribute
(
name
=
"档案所在地"
,
maxLength
=
200
)
@Length
(
max
=
200
,
message
=
"档案所在地不能超过200个字符"
)
@ExcelProperty
(
"档案所在地"
)
@Schema
(
description
=
"档案所在地"
)
private
String
fileLocation
;
@ExcelAttribute
(
name
=
"档案-省"
,
maxLength
=
32
,
isDataId
=
true
,
isArea
=
true
,
parentField
=
""
)
@Schema
(
description
=
"档案-省"
,
name
=
"fileProvince"
)
private
Integer
fileProvince
;
/**
* 档案-市
*/
@ExcelAttribute
(
name
=
"档案-市"
,
maxLength
=
32
,
isDataId
=
true
,
isArea
=
true
,
parentField
=
"fileProvince"
)
@Schema
(
description
=
"档案-市"
,
name
=
"fileCity"
)
private
Integer
fileCity
;
/**
* 档案-县
*/
@ExcelAttribute
(
name
=
"档案-县"
,
maxLength
=
32
,
isDataId
=
true
,
isArea
=
true
,
parentField
=
"fileCity"
)
@Schema
(
description
=
"档案-县"
,
name
=
"fileTown"
)
private
Integer
fileTown
;
/**
* 合同类型
...
...
@@ -77,7 +88,7 @@ public class TContractPreDetail extends BaseEntity {
@Length
(
max
=
50
,
message
=
"合同类型不能超过50个字符"
)
@ExcelProperty
(
"合同类型"
)
@Schema
(
description
=
"合同类型"
)
private
String
contract
Typ
e
;
private
String
contract
Nam
e
;
/**
* 签订类型
...
...
@@ -95,25 +106,23 @@ public class TContractPreDetail extends BaseEntity {
@Length
(
max
=
50
,
message
=
"签订期限不能超过50个字符"
)
@ExcelProperty
(
"签订期限"
)
@Schema
(
description
=
"签订期限"
)
private
String
signTerm
;
private
String
contractType
;
/**
* 合同起始
日期
* 合同起始
时间
*/
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
,
pattern
=
"yyyy-MM-dd"
)
@ExcelAttribute
(
name
=
"合同起始日期"
)
@ExcelProperty
(
"合同起始日期"
)
@Schema
(
description
=
"合同起始日期"
)
private
Date
contractStartDate
;
@NotBlank
(
message
=
"合同起始时间不能为空"
)
@ExcelAttribute
(
name
=
"合同起始时间"
,
needExport
=
true
,
isNotEmpty
=
true
)
@Schema
(
description
=
"合同起始时间"
,
name
=
"contractStart"
)
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
,
pattern
=
"yyyy-MM-dd HH:mm:ss"
,
timezone
=
"GMT+08:00"
)
private
Date
contractStart
;
/**
* 合同
截止日期
* 合同
到期时间
*/
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
,
pattern
=
"yyyy-MM-dd"
)
@ExcelAttribute
(
name
=
"合同截止日期"
)
@ExcelProperty
(
"合同截止日期"
)
@Schema
(
description
=
"合同截止日期"
)
private
Date
contractEndDate
;
@ExcelAttribute
(
name
=
"合同到期时间"
,
needExport
=
true
)
@Schema
(
description
=
"合同到期时间"
,
name
=
"contractEnd"
)
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
,
pattern
=
"yyyy-MM-dd HH:mm:ss"
,
timezone
=
"GMT+08:00"
)
private
Date
contractEnd
;
/**
* 审核状态(0:待提交;1:待审核;2审核通过;3审核不通过;4签署中;5撤销签署;6签署失败)
...
...
@@ -124,15 +133,6 @@ public class TContractPreDetail extends BaseEntity {
@Schema
(
description
=
"审核状态(0:待提交;1:待审核;2审核通过;3审核不通过;4签署中;5撤销签署;6签署失败)"
)
private
String
auditStatus
;
/**
* 合同状态
*/
@ExcelAttribute
(
name
=
"合同状态"
,
maxLength
=
20
)
@Length
(
max
=
20
,
message
=
"合同状态不能超过20个字符"
)
@ExcelProperty
(
"合同状态"
)
@Schema
(
description
=
"合同状态"
)
private
String
contractStatus
;
/**
* 入职确认信息主表id
*/
...
...
yifu-archives/yifu-archives-api/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/vo/TContractPreDetailVo.java
View file @
13d0a983
...
...
@@ -41,7 +41,7 @@ public class TContractPreDetailVo implements Serializable {
*/
@ExcelProperty
(
"申请人"
)
@Schema
(
description
=
"申请人"
)
private
String
applicant
Name
;
private
String
create
Name
;
/**
* 申请时间
...
...
@@ -49,51 +49,65 @@ public class TContractPreDetailVo implements Serializable {
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
,
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
@ExcelProperty
(
"申请时间"
)
@Schema
(
description
=
"申请时间"
)
private
Date
apply
Time
;
private
Date
create
Time
;
/**
* 档案
所在地
* 档案
-省
*/
@ExcelProperty
(
"档案所在地"
)
@Schema
(
description
=
"档案所在地"
)
private
String
fileLocation
;
@ExcelProperty
(
"档案-省"
)
@Schema
(
description
=
"档案-省"
,
name
=
"fileProvince"
)
private
Integer
fileProvince
;
/**
* 档案-市
*/
@ExcelProperty
(
"档案-市"
)
@Schema
(
description
=
"档案-市"
,
name
=
"fileCity"
)
private
Integer
fileCity
;
/**
* 档案-县
*/
@ExcelProperty
(
"档案-县"
)
@Schema
(
description
=
"档案-县"
,
name
=
"fileTown"
)
private
Integer
fileTown
;
/**
* 合同类型
*/
@ExcelProperty
(
"合同类型"
)
@Schema
(
description
=
"合同类型"
)
private
String
contract
Typ
e
;
@Schema
(
description
=
"合同类型"
,
name
=
"contractName"
)
private
String
contract
Nam
e
;
/**
* 签订类型
*/
@ExcelProperty
(
"签订类型"
)
@Schema
(
description
=
"签订类型"
)
@Schema
(
description
=
"签订类型"
,
name
=
"signType"
)
private
String
signType
;
/**
* 签订期限
*/
@ExcelProperty
(
"签订期限"
)
@Schema
(
description
=
"签订期限"
)
private
String
signTerm
;
@Schema
(
description
=
"签订期限"
,
name
=
"contractType"
)
private
String
contractType
;
/**
* 合同起始
日期
* 合同起始
时间
*/
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
,
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
,
pattern
=
"yyyy-MM-dd
HH:mm:ss
"
)
@ExcelProperty
(
"合同起始日期"
)
@Schema
(
description
=
"合同起始
日期
"
)
private
Date
contractStart
Date
;
@Schema
(
description
=
"合同起始
时间"
,
name
=
"contractStart
"
)
private
Date
contractStart
;
/**
* 合同
截止日期
* 合同
到期时间
*/
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
,
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
,
pattern
=
"yyyy-MM-dd
HH:mm:ss
"
)
@ExcelProperty
(
"合同截止日期"
)
@Schema
(
description
=
"合同
截止日期
"
)
private
Date
contractEnd
Date
;
@Schema
(
description
=
"合同
到期时间"
,
name
=
"contractEnd
"
)
private
Date
contractEnd
;
/**
* 审核状态(0:待提交;1:待审核;2审核通过;3审核不通过;4签署中;5撤销签署;6签署失败)
...
...
@@ -102,13 +116,6 @@ public class TContractPreDetailVo implements Serializable {
@Schema
(
description
=
"审核状态(0:待提交;1:待审核;2审核通过;3审核不通过;4签署中;5撤销签署;6签署失败)"
)
private
String
auditStatus
;
/**
* 合同状态
*/
@ExcelProperty
(
"合同状态"
)
@Schema
(
description
=
"合同状态"
)
private
String
contractStatus
;
/**
* 入职确认信息主表id
*/
...
...
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