Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
Y
yn-health-science
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
徐俊
yn-health-science
Commits
5e1ffc36
Commit
5e1ffc36
authored
Mar 11, 2025
by
徐俊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xujun
parent
ea98f886
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
3 deletions
+37
-3
ComPerson.java
...n/src/main/java/com/yiboshi/science/entity/ComPerson.java
+37
-3
No files found.
science-admin/src/main/java/com/yiboshi/science/entity/ComPerson.java
View file @
5e1ffc36
...
@@ -56,6 +56,22 @@ public class ComPerson extends BaseEntity {
...
@@ -56,6 +56,22 @@ public class ComPerson extends BaseEntity {
@ApiModelProperty
(
value
=
"学位"
,
position
=
8
)
@ApiModelProperty
(
value
=
"学位"
,
position
=
8
)
@Length
(
max
=
36
,
message
=
"学位不能大于36"
)
@Length
(
max
=
36
,
message
=
"学位不能大于36"
)
private
String
degree
;
private
String
degree
;
/** 最高学位授予时间 */
@ApiModelProperty
(
value
=
"最高学位授予时间"
,
position
=
5
)
@JsonFormat
(
timezone
=
"GMT+8"
,
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
degreeTime
;
/** 最高学位授予单位 */
@ApiModelProperty
(
value
=
"最高学位授予单位"
,
position
=
9
)
@Length
(
max
=
200
,
message
=
"最高学位授予单位"
)
private
Date
degreeUnit
;
/** 是否为研究生导师 */
@ApiModelProperty
(
value
=
"是否为研究生导师"
,
position
=
8
)
@Length
(
max
=
36
,
message
=
"是否为研究生导师不能大于36"
)
private
String
graduateTeacher
;
/** 党派 */
@ApiModelProperty
(
value
=
"党派"
,
position
=
9
)
@Length
(
max
=
30
,
message
=
"党派"
)
private
String
politicalParty
;
/** 学历 */
/** 学历 */
@ApiModelProperty
(
value
=
"学历"
,
position
=
8
)
@ApiModelProperty
(
value
=
"学历"
,
position
=
8
)
@Length
(
max
=
36
,
message
=
"学历不能大于36"
)
@Length
(
max
=
36
,
message
=
"学历不能大于36"
)
...
@@ -101,17 +117,35 @@ public class ComPerson extends BaseEntity {
...
@@ -101,17 +117,35 @@ public class ComPerson extends BaseEntity {
@Length
(
max
=
200
,
message
=
"住址不能大于200"
)
@Length
(
max
=
200
,
message
=
"住址不能大于200"
)
private
String
address
;
private
String
address
;
/** 开户银行 */
/** 开户银行 */
@ApiModelProperty
(
value
=
"开户银行"
,
position
=
17
)
@ApiModelProperty
(
value
=
"开户银行"
,
position
=
17
)
@Length
(
max
=
200
,
message
=
"开户银行不能大于100"
)
@Length
(
max
=
200
,
message
=
"开户银行不能大于100"
)
private
String
openBank
;
private
String
openBank
;
/** 开户账号 */
/** 开户账号 */
@ApiModelProperty
(
value
=
"开户账号"
,
position
=
18
)
@ApiModelProperty
(
value
=
"开户账号"
,
position
=
18
)
@Length
(
max
=
200
,
message
=
"开户账号不能大于30"
)
@Length
(
max
=
200
,
message
=
"开户账号不能大于30"
)
private
String
openAcount
;
private
String
openAcount
;
/** 工作单位 */
/** 工作单位 */
@ApiModelProperty
(
value
=
"工作单位"
,
position
=
19
)
@ApiModelProperty
(
value
=
"工作单位"
,
position
=
19
)
@Length
(
max
=
200
,
message
=
"工作单位"
)
@Length
(
max
=
200
,
message
=
"工作单位"
)
private
String
workUnit
;
private
String
workUnit
;
/** 主管部门 */
@ApiModelProperty
(
value
=
"主管部门"
,
position
=
19
)
@Length
(
max
=
50
,
message
=
"主管部门"
)
private
String
managerDept
;
/** 单位电话 */
@ApiModelProperty
(
value
=
"单位电话"
,
position
=
19
)
@Length
(
max
=
20
,
message
=
"单位电话"
)
private
String
teleUnit
;
/** 单位邮政编码 */
@ApiModelProperty
(
value
=
"单位邮政编码"
,
position
=
19
)
@Length
(
max
=
10
,
message
=
"单位邮政编码"
)
private
String
postalCode
;
/** 单位通讯地址 */
@ApiModelProperty
(
value
=
"单位通讯地址"
,
position
=
19
)
@Length
(
max
=
10
,
message
=
"单位通讯地址"
)
private
String
addressUnit
;
/** 备注 */
/** 备注 */
@ApiModelProperty
(
value
=
"备注"
,
position
=
19
)
@ApiModelProperty
(
value
=
"备注"
,
position
=
19
)
@Length
(
max
=
200
,
message
=
"备注不能大于200"
)
@Length
(
max
=
200
,
message
=
"备注不能大于200"
)
...
...
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