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
2ac57ddc
Commit
2ac57ddc
authored
Dec 26, 2024
by
徐俊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xujun
parent
0e320172
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
ComProjectGroupDetailDTO.java
...m/yiboshi/science/param/dto/ComProjectGroupDetailDTO.java
+9
-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 @
2ac57ddc
...
@@ -61,6 +61,15 @@ public class ComProjectGroupDetailDTO extends BaseDTO {
...
@@ -61,6 +61,15 @@ public class ComProjectGroupDetailDTO extends BaseDTO {
@ApiModelProperty
(
value
=
"姓名"
,
position
=
4
)
@ApiModelProperty
(
value
=
"姓名"
,
position
=
4
)
private
String
personName
;
private
String
personName
;
/** 申报单位Id */
@ApiModelProperty
(
value
=
"申报单位Id"
,
position
=
6
)
@Length
(
max
=
36
,
message
=
"申报单位Id不能大于36"
)
private
String
appUnitId
;
/** 申报单位名称 */
@ApiModelProperty
(
value
=
"申报单位名称"
,
position
=
7
)
private
String
appUnitName
;
/** key */
/** key */
@ApiModelProperty
(
value
=
"key"
,
position
=
1
)
@ApiModelProperty
(
value
=
"key"
,
position
=
1
)
@Length
(
max
=
36
,
message
=
"key不能大于36"
)
@Length
(
max
=
36
,
message
=
"key不能大于36"
)
...
...
science-admin/src/main/resources/mapper/ComProjectGroupDetailDAO.xml
View file @
2ac57ddc
...
@@ -21,12 +21,13 @@
...
@@ -21,12 +21,13 @@
</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.app_no, b.proj_class, b.proj_name, d.name as knowledge_name, c.cert_id, c.person_name
select a.*, b.
app_unit_id, f.unit_name as app_unit_name, 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
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
left join system_parameter e on d.parent_id = e.id
left join system_parameter e on d.parent_id = e.id
left join com_unit f on b.app_unit_id = f.id
<where>
<where>
${ew.sqlSegment}
${ew.sqlSegment}
</where>
</where>
...
...
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