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
e50f43c8
Commit
e50f43c8
authored
Mar 24, 2025
by
徐俊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xujun
parent
ea73cf3b
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
11 deletions
+9
-11
ComTalentMembers.java
...ain/java/com/yiboshi/science/entity/ComTalentMembers.java
+4
-4
ComTalentMembersDTO.java
...va/com/yiboshi/science/param/dto/ComTalentMembersDTO.java
+2
-2
ComTalentMembersQueryVO.java
.../yiboshi/science/param/query/ComTalentMembersQueryVO.java
+1
-1
ComTalentApplyServiceImpl.java
...boshi/science/service/impl/ComTalentApplyServiceImpl.java
+1
-3
ComTalentMembersDAO.xml
...e-admin/src/main/resources/mapper/ComTalentMembersDAO.xml
+1
-1
No files found.
science-admin/src/main/java/com/yiboshi/science/entity/ComTalentMembers.java
View file @
e50f43c8
...
...
@@ -45,10 +45,10 @@ public class ComTalentMembers extends BaseEntity {
@Length
(
max
=
200
,
message
=
"专业特长不能大于200"
)
private
String
spec
;
/** 职
务
*/
@ApiModelProperty
(
value
=
"职
务
"
,
position
=
6
)
@Length
(
max
=
50
,
message
=
"职
务
不能大于50"
)
private
String
duty
;
/** 职
称
*/
@ApiModelProperty
(
value
=
"职
称
"
,
position
=
6
)
@Length
(
max
=
50
,
message
=
"职
称
不能大于50"
)
private
String
title
;
/** 工作单位 */
@ApiModelProperty
(
value
=
"工作单位"
,
position
=
7
)
...
...
science-admin/src/main/java/com/yiboshi/science/param/dto/ComTalentMembersDTO.java
View file @
e50f43c8
...
...
@@ -40,10 +40,10 @@ public class ComTalentMembersDTO extends BaseDTO {
private
String
specName
;
@ApiModelProperty
(
value
=
"职务"
)
private
String
duty
;
private
String
title
;
@ApiModelProperty
(
value
=
"职务名称"
)
private
String
duty
Name
;
private
String
title
Name
;
@ApiModelProperty
(
value
=
"工作单位"
)
private
String
workUnit
;
...
...
science-admin/src/main/java/com/yiboshi/science/param/query/ComTalentMembersQueryVO.java
View file @
e50f43c8
...
...
@@ -37,7 +37,7 @@ public class ComTalentMembersQueryVO extends PaginationVO {
private
String
spec
;
@ApiModelProperty
(
value
=
"职务"
)
private
String
duty
;
private
String
title
;
@ApiModelProperty
(
value
=
"工作单位"
)
private
String
workUnit
;
...
...
science-admin/src/main/java/com/yiboshi/science/service/impl/ComTalentApplyServiceImpl.java
View file @
e50f43c8
...
...
@@ -206,7 +206,7 @@ public class ComTalentApplyServiceImpl extends BaseServiceImpl<ComTalentApplyDAO
case
2
:
//申报人科研成绩
id
=
talentSaveStep2
(
dto
);
break
;
case
3
:
//
科学研究规划及
团队人员名单
case
3
:
//团队人员名单
id
=
talentSaveStep3
(
dto
);
break
;
case
4
:
//经费预算及培养计划和目标
...
...
@@ -273,8 +273,6 @@ public class ComTalentApplyServiceImpl extends BaseServiceImpl<ComTalentApplyDAO
@Transactional
public
String
talentSaveStep3
(
ComTalentApplyDTO
dto
)
{
ComTalentApply
comTalentApply
=
convert2Entity
(
dto
);
this
.
update
(
comTalentApply
);
List
<
ComTalentMembersDTO
>
MemberList
=
dto
.
getMembersList
();
...
...
science-admin/src/main/resources/mapper/ComTalentMembersDAO.xml
View file @
e50f43c8
...
...
@@ -48,7 +48,7 @@
<select
id=
"getListByTalentId"
parameterType=
"java.lang.String"
resultType=
"com.yiboshi.science.param.dto.ComTalentMembersDTO"
>
SELECT a.*,d.name duty_name,f.name spec_name
FROM com_talent_members a
left join system_parameter d on a.
duty = d.id and d.type_id = 62
left join system_parameter d on a.
title = d.id and d.type_id = 7
left join system_parameter f on a.spec = f.id and f.type_id = 68
where talent_id=#{talentId}
order by a.show_index asc
...
...
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