Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
A
an-plus-hr
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
anjia-hr
an-plus-hr
Commits
a8cf7626
Commit
a8cf7626
authored
Dec 12, 2025
by
刘斌
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 修复employeeId的NotBlank2
parent
84cffa65
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
EmployeeEntryApplyParam.java
.../com/anplus/hr/domain/params/EmployeeEntryApplyParam.java
+1
-1
EmployeeRegularApplyParam.java
...om/anplus/hr/domain/params/EmployeeRegularApplyParam.java
+1
-1
EmployeeRenewalContractApplyParam.java
...s/hr/domain/params/EmployeeRenewalContractApplyParam.java
+1
-1
EmployeeResignApplyParam.java
...com/anplus/hr/domain/params/EmployeeResignApplyParam.java
+1
-1
No files found.
admin/src/main/java/com/anplus/hr/domain/params/EmployeeEntryApplyParam.java
View file @
a8cf7626
...
...
@@ -18,7 +18,7 @@ public class EmployeeEntryApplyParam {
/**
* 员工id
*/
@Not
Blank
(
message
=
"员工不能为空"
)
@Not
Null
(
message
=
"员工不能为空"
)
private
Long
employeeId
;
/**
...
...
admin/src/main/java/com/anplus/hr/domain/params/EmployeeRegularApplyParam.java
View file @
a8cf7626
...
...
@@ -26,7 +26,7 @@ public class EmployeeRegularApplyParam {
/**
* 员工id
*/
@Not
Blank
(
message
=
"员工不能为空"
)
@Not
Null
(
message
=
"员工不能为空"
)
private
Long
employeeId
;
// /**
...
...
admin/src/main/java/com/anplus/hr/domain/params/EmployeeRenewalContractApplyParam.java
View file @
a8cf7626
...
...
@@ -22,7 +22,7 @@ public class EmployeeRenewalContractApplyParam {
/**
* 员工id
*/
@Not
Blank
(
message
=
"员工不能为空"
)
@Not
Null
(
message
=
"员工不能为空"
)
private
Long
employeeId
;
/**
...
...
admin/src/main/java/com/anplus/hr/domain/params/EmployeeResignApplyParam.java
View file @
a8cf7626
...
...
@@ -19,7 +19,7 @@ public class EmployeeResignApplyParam {
/**
* 员工id
*/
@Not
Blank
(
message
=
"员工不能为空"
)
@Not
Null
(
message
=
"员工不能为空"
)
private
Long
employeeId
;
/**
...
...
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