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
19e3d639
Commit
19e3d639
authored
Mar 20, 2025
by
徐俊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xujun
parent
602d9030
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
2 deletions
+15
-2
ComPerson.java
...n/src/main/java/com/yiboshi/science/entity/ComPerson.java
+1
-1
ComPersonDTO.java
...main/java/com/yiboshi/science/param/dto/ComPersonDTO.java
+13
-0
ComProjectGroupDAO.xml
...ce-admin/src/main/resources/mapper/ComProjectGroupDAO.xml
+1
-1
No files found.
science-admin/src/main/java/com/yiboshi/science/entity/ComPerson.java
View file @
19e3d639
...
...
@@ -63,7 +63,7 @@ public class ComPerson extends BaseEntity {
/** 最高学位授予单位 */
@ApiModelProperty
(
value
=
"最高学位授予单位"
,
position
=
9
)
@Length
(
max
=
200
,
message
=
"最高学位授予单位"
)
private
Date
degreeUnit
;
private
String
degreeUnit
;
/** 是否为研究生导师 */
@ApiModelProperty
(
value
=
"是否为研究生导师"
,
position
=
8
)
@Length
(
max
=
120
,
message
=
"是否为研究生导师不能大于120"
)
...
...
science-admin/src/main/java/com/yiboshi/science/param/dto/ComPersonDTO.java
View file @
19e3d639
...
...
@@ -46,6 +46,19 @@ public class ComPersonDTO extends BaseDTO {
/** 学位 */
@ApiModelProperty
(
value
=
"学位"
,
position
=
9
)
private
String
degree
;
/** 最高学位授予时间 */
@ApiModelProperty
(
value
=
"最高学位授予时间"
,
position
=
6
)
@JsonFormat
(
timezone
=
"GMT+8"
,
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
degreeTime
;
/** 最高学位授予单位 */
@ApiModelProperty
(
value
=
"最高学位授予单位"
,
position
=
9
)
private
String
degreeUnit
;
/** 是否为研究生导师 */
@ApiModelProperty
(
value
=
"是否为研究生导师"
,
position
=
8
)
private
String
graduateTeacher
;
/** 党派 */
@ApiModelProperty
(
value
=
"党派"
,
position
=
9
)
private
String
politicalParty
;
/** 学历 */
@ApiModelProperty
(
value
=
"学历"
,
position
=
10
)
private
String
education
;
...
...
science-admin/src/main/resources/mapper/ComProjectGroupDAO.xml
View file @
19e3d639
...
...
@@ -18,7 +18,7 @@
<where>
${ew.sqlSegment}
</where>
order by a.
group_name asc,a.
display_order asc
order by a.display_order asc
</select>
<select
id=
"getAssignExpertList"
resultType=
"com.yiboshi.science.param.dto.ComProjectAssignDTO"
>
...
...
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