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
5d045b33
Commit
5d045b33
authored
Dec 26, 2024
by
徐俊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xujun
parent
71ddcc0e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
ComProjectAssignQueryVO.java
.../yiboshi/science/param/query/ComProjectAssignQueryVO.java
+4
-1
ComProjectAssignServiceImpl.java
...shi/science/service/impl/ComProjectAssignServiceImpl.java
+3
-0
No files found.
science-admin/src/main/java/com/yiboshi/science/param/query/ComProjectAssignQueryVO.java
View file @
5d045b33
...
@@ -141,6 +141,9 @@ public class ComProjectAssignQueryVO extends PaginationVO {
...
@@ -141,6 +141,9 @@ public class ComProjectAssignQueryVO extends PaginationVO {
@ApiModelProperty
(
value
=
"姓名"
,
position
=
3
)
@ApiModelProperty
(
value
=
"姓名"
,
position
=
3
)
private
String
appUnitName
;
private
String
appUnitName
;
/** 项目负责人 */
/** 项目负责人 */
@ApiModelProperty
(
value
=
"项目负责人"
,
position
=
6
)
@ApiModelProperty
(
value
=
"项目负责人"
,
position
=
6
)
private
String
appPersonName
;
private
String
appPersonName
;
/** 项目组Id */
@ApiModelProperty
(
value
=
"项目组Id"
,
position
=
6
)
private
String
groupId
;
}
}
science-admin/src/main/java/com/yiboshi/science/service/impl/ComProjectAssignServiceImpl.java
View file @
5d045b33
...
@@ -52,6 +52,9 @@ public class ComProjectAssignServiceImpl extends BaseServiceImpl<ComProjectAssig
...
@@ -52,6 +52,9 @@ public class ComProjectAssignServiceImpl extends BaseServiceImpl<ComProjectAssig
if
(
Objects
.
nonNull
(
vo
.
getProjId
()))
{
if
(
Objects
.
nonNull
(
vo
.
getProjId
()))
{
criteria
.
eq
(
"a.proj_id"
,
vo
.
getProjId
());
criteria
.
eq
(
"a.proj_id"
,
vo
.
getProjId
());
}
}
if
(
Objects
.
nonNull
(
vo
.
getGroupId
()))
{
criteria
.
eq
(
"k.id"
,
vo
.
getGroupId
());
}
if
(
Objects
.
nonNull
(
vo
.
getAssignYear
()))
{
if
(
Objects
.
nonNull
(
vo
.
getAssignYear
()))
{
criteria
.
eq
(
"assign_year"
,
vo
.
getAssignYear
());
criteria
.
eq
(
"assign_year"
,
vo
.
getAssignYear
());
}
}
...
...
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