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
add017bf
Commit
add017bf
authored
Jul 31, 2025
by
wangxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
220e023f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
33 additions
and
21 deletions
+33
-21
ComTalentAssignDTO.java
...ava/com/yiboshi/science/param/dto/ComTalentAssignDTO.java
+31
-20
ComTalentAssignController.java
...om/yiboshi/science/rest/v1/ComTalentAssignController.java
+1
-0
ComTalentAssignDAO.xml
...ce-admin/src/main/resources/mapper/ComTalentAssignDAO.xml
+1
-1
No files found.
science-admin/src/main/java/com/yiboshi/science/param/dto/ComTalentAssignDTO.java
View file @
add017bf
...
...
@@ -54,11 +54,31 @@ public class ComTalentAssignDTO extends BaseDTO {
@ExcelProperty
(
"人才类别名称"
)
@ApiModelProperty
(
value
=
"人才类别名称"
,
position
=
3
)
private
String
talentCategoryName
;
/** 现从事专业 */
@ApiModelProperty
(
value
=
"现从事专业"
,
position
=
11
)
@Length
(
max
=
36
,
message
=
"现从事专业不能大于36"
)
private
String
profession
;
/** 现从事专业 */
@ApiModelProperty
(
value
=
"现从事专业"
,
position
=
40
)
private
String
professionName
;
/** 职称 */
@ApiModelProperty
(
value
=
"职称"
,
position
=
13
)
private
String
title
;
/** 职称名称 */
@ApiModelProperty
(
value
=
"职称名称"
,
position
=
13
)
private
String
titleName
;
/** 专业Id */
@ApiModelProperty
(
value
=
"专业Id"
,
position
=
5
)
private
String
spec
;
/** 专业名称 */
@ApiModelProperty
(
value
=
"专业名称"
,
position
=
5
)
private
String
specName
;
/** 申报单位 */
@ExcelProperty
(
"申报单位"
)
@ApiModelProperty
(
value
=
"人才类别名称"
,
position
=
3
)
private
String
appUnitName
;
/** 专家证件号 */
@ExcelProperty
(
"专家证件号"
)
@ApiModelProperty
(
value
=
"专家证件号"
,
position
=
1
)
...
...
@@ -69,41 +89,32 @@ public class ComTalentAssignDTO extends BaseDTO {
private
String
expertName
;
/** 专家电话号码 */
@ApiModelProperty
(
value
=
"专家电话号码"
,
position
=
10
)
private
String
m
obile
;
private
String
expertM
obile
;
/** 专家性别 */
@ApiModelProperty
(
value
=
"专家性别"
,
position
=
5
)
private
String
sex
;
/** 专业Id */
@ApiModelProperty
(
value
=
"专业Id"
,
position
=
5
)
private
String
spec
;
/** 专业名称 */
@ApiModelProperty
(
value
=
"专业名称"
,
position
=
5
)
private
String
specName
;
/** 现从事专业 */
@ApiModelProperty
(
value
=
"现从事专业"
,
position
=
11
)
@Length
(
max
=
36
,
message
=
"现从事专业不能大于36"
)
private
String
profession
;
/** 现从事专业 */
@ApiModelProperty
(
value
=
"现从事专业"
,
position
=
40
)
private
String
professionName
;
private
String
expertSex
;
/** 职称 */
@ApiModelProperty
(
value
=
"职称"
,
position
=
13
)
private
String
t
itle
;
private
String
expertT
itle
;
/** 职称名称 */
@ApiModelProperty
(
value
=
"职称名称"
,
position
=
13
)
private
String
t
itleName
;
private
String
expertT
itleName
;
/** 专家所属单位 */
@ApiModelProperty
(
value
=
"专家所属单位"
,
position
=
13
)
private
String
expertUnitName
;
/** 评审专业 */
@ApiModelProperty
(
value
=
"评审专业"
,
position
=
13
)
private
List
<
ComExpertSpecDTO
>
specList
;
/** 评审状态 */
@ApiModelProperty
(
value
=
"评审状态"
,
position
=
10
)
private
String
stateName
;
/** 人才分组名称 */
@ApiModelProperty
(
value
=
"人才分组名称"
,
position
=
10
)
private
String
groupName
;
/** 评审专业 */
@ApiModelProperty
(
value
=
"评审专业"
,
position
=
13
)
private
List
<
ComExpertSpecDTO
>
specList
;
/** 评分列表 */
@ApiModelProperty
(
value
=
"评分列表"
,
position
=
13
)
private
List
<
ComEvaluationValueDTO
>
scoreList
;
...
...
science-admin/src/main/java/com/yiboshi/science/rest/v1/ComTalentAssignController.java
View file @
add017bf
...
...
@@ -64,6 +64,7 @@ public class ComTalentAssignController extends BaseController<ComTalentAssignSer
e
.
setTalentCategoryName
(
systemParameterService
.
getParaName
(
e
.
getTalentCategory
()));
e
.
setTitleName
(
systemParameterService
.
getParaName
(
e
.
getTitle
()));
e
.
setProfessionName
(
systemParameterService
.
getParaName
(
e
.
getProfession
()));
e
.
setExpertTitleName
(
systemParameterService
.
getParaName
(
e
.
getExpertTitle
()));
});
}
return
ResponseDataModel
.
ok
(
page
);
...
...
science-admin/src/main/resources/mapper/ComTalentAssignDAO.xml
View file @
add017bf
...
...
@@ -6,7 +6,7 @@
t.id as id, t.expert_id as expertId, t.talent_id as talentId, t.assign_year as assignYear, t.total_score as gradeScore, t.remark as remark, t.created as created, t.updated as updated
</sql>
<select
id=
"getListByPage"
resultType=
"com.yiboshi.science.param.dto.ComTalentAssignDTO"
>
SELECT a.*,c.person_name as expert_name,c.cert_id as expert_cert_id,c.sex expert_sex,
SELECT a.*,c.person_name as expert_name,c.cert_id as expert_cert_id,c.sex expert_sex,
c.title expert_title,c.mobile expert_mobile,
e.talent_category,
g.unit_name expert_unit_name,
f.cert_id, f.person_name, f.sex, f.mobile, f.duty, f.title, f.profession,
...
...
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