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
2f8bad65
Commit
2f8bad65
authored
Dec 25, 2024
by
徐俊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xujun
parent
bb328421
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
ComProjectGroupDetailDTO.java
...m/yiboshi/science/param/dto/ComProjectGroupDetailDTO.java
+8
-0
ComProjectGroupDetailDAO.xml
...in/src/main/resources/mapper/ComProjectGroupDetailDAO.xml
+2
-1
No files found.
science-admin/src/main/java/com/yiboshi/science/param/dto/ComProjectGroupDetailDTO.java
View file @
2f8bad65
...
@@ -36,11 +36,19 @@ public class ComProjectGroupDetailDTO extends BaseDTO {
...
@@ -36,11 +36,19 @@ public class ComProjectGroupDetailDTO extends BaseDTO {
@Length
(
max
=
100
,
message
=
"项目编号不能大于100"
)
@Length
(
max
=
100
,
message
=
"项目编号不能大于100"
)
private
String
projNo
;
private
String
projNo
;
/** 申请编号 */
@ApiModelProperty
(
value
=
"申请编号"
,
position
=
2
)
private
String
appNo
;
/** 项目名称 */
/** 项目名称 */
@ApiModelProperty
(
value
=
"项目名称"
,
position
=
5
)
@ApiModelProperty
(
value
=
"项目名称"
,
position
=
5
)
@Length
(
max
=
150
,
message
=
"项目名称不能大于150"
)
@Length
(
max
=
150
,
message
=
"项目名称不能大于150"
)
private
String
projName
;
private
String
projName
;
/** 项目类别 1 一般项目 2重点项目 */
@ApiModelProperty
(
value
=
"项目类别"
,
position
=
1
)
private
Integer
projClass
;
/** 学科 */
/** 学科 */
@ApiModelProperty
(
value
=
"学科"
,
position
=
6
)
@ApiModelProperty
(
value
=
"学科"
,
position
=
6
)
private
String
knowledgeName
;
private
String
knowledgeName
;
...
...
science-admin/src/main/resources/mapper/ComProjectGroupDetailDAO.xml
View file @
2f8bad65
...
@@ -21,7 +21,8 @@
...
@@ -21,7 +21,8 @@
</select>
</select>
<select
id=
"getProjectDetailListbyPage"
resultType=
"com.yiboshi.science.param.dto.ComProjectGroupDetailDTO"
>
<select
id=
"getProjectDetailListbyPage"
resultType=
"com.yiboshi.science.param.dto.ComProjectGroupDetailDTO"
>
select a.*, b.proj_no, b.proj_name, d.name as knowledge_name, c.cert_id, c.person_name from com_project_group_detail a
select a.*, b.proj_no, b.app_no, b.proj_class, b.proj_name, d.name as knowledge_name, c.cert_id, c.person_name
from com_project_group_detail a
left join com_project b on a.proj_id = b.id
left join com_project b on a.proj_id = b.id
left join com_person c on b.app_person_id = c.id
left join com_person c on b.app_person_id = c.id
left join system_parameter d on b.knowledge_id = d.id
left join system_parameter d on b.knowledge_id = d.id
...
...
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