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
0c7ac05f
Commit
0c7ac05f
authored
Mar 06, 2025
by
huyuchen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
huych-入离职登记提交
parent
5d06204a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
EmployeeRegistrationVo.java
...com/yifu/cloud/plus/v1/csp/vo/EmployeeRegistrationVo.java
+4
-2
No files found.
yifu-csp/yifu-csp-api/src/main/java/com/yifu/cloud/plus/v1/csp/vo/EmployeeRegistrationVo.java
View file @
0c7ac05f
...
...
@@ -54,7 +54,8 @@ public class EmployeeRegistrationVo extends RowIndex implements Serializable {
* 岗位
*/
@Length
(
max
=
50
,
message
=
"岗位不能超过50个字符"
)
@ExcelAttribute
(
name
=
"岗位"
,
maxLength
=
50
)
@NotBlank
(
message
=
"岗位不能为空"
)
@ExcelAttribute
(
name
=
"岗位"
,
maxLength
=
50
,
isNotEmpty
=
true
,
errorInfo
=
"岗位不能为空"
)
@Schema
(
description
=
"岗位"
)
@ExcelProperty
(
"岗位"
)
private
String
position
;
...
...
@@ -62,7 +63,8 @@ public class EmployeeRegistrationVo extends RowIndex implements Serializable {
/**
* 反馈类型 1入职 2离职
*/
@ExcelAttribute
(
name
=
"登记类型"
,
readConverterExp
=
"1=入职,2=离职"
)
@NotBlank
(
message
=
"登记类型不能为空"
)
@ExcelAttribute
(
name
=
"登记类型"
,
readConverterExp
=
"1=入职,2=离职"
,
isNotEmpty
=
true
,
errorInfo
=
"登记类型不能为空"
)
@Schema
(
description
=
"登记类型"
)
@ExcelProperty
(
"登记类型"
)
private
String
feedbackType
;
...
...
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