Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
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
cde6fec1
Commit
cde6fec1
authored
Aug 20, 2025
by
wangxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
db6118b1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
ComProjectAuditQueryVO.java
...m/yiboshi/science/param/query/ComProjectAuditQueryVO.java
+3
-0
ComProjectAuditServiceImpl.java
...oshi/science/service/impl/ComProjectAuditServiceImpl.java
+4
-1
No files found.
science-admin/src/main/java/com/yiboshi/science/param/query/ComProjectAuditQueryVO.java
View file @
cde6fec1
...
@@ -60,6 +60,9 @@ public class ComProjectAuditQueryVO extends PaginationVO{
...
@@ -60,6 +60,9 @@ public class ComProjectAuditQueryVO extends PaginationVO{
@Length
(
max
=
36
,
message
=
"审核人不能大于36"
)
@Length
(
max
=
36
,
message
=
"审核人不能大于36"
)
private
String
comPerson
;
private
String
comPerson
;
/** 项目名称 */
@ApiModelProperty
(
value
=
"审核人"
,
position
=
41
)
private
String
auditPersonName
;
/** 项目名称 */
/** 项目名称 */
@ApiModelProperty
(
value
=
"项目名称"
,
position
=
1
)
@ApiModelProperty
(
value
=
"项目名称"
,
position
=
1
)
...
...
science-admin/src/main/java/com/yiboshi/science/service/impl/ComProjectAuditServiceImpl.java
View file @
cde6fec1
...
@@ -95,7 +95,10 @@ public class ComProjectAuditServiceImpl extends BaseServiceImpl<ComProjectAuditD
...
@@ -95,7 +95,10 @@ public class ComProjectAuditServiceImpl extends BaseServiceImpl<ComProjectAuditD
criteria
.
and
(
qw
->
qw
.
eq
(
"d.tree_code"
,
vo
.
getTreeCode
()).
or
().
likeRight
(
"d.tree_code"
,
vo
.
getTreeCode
()));
criteria
.
and
(
qw
->
qw
.
eq
(
"d.tree_code"
,
vo
.
getTreeCode
()).
or
().
likeRight
(
"d.tree_code"
,
vo
.
getTreeCode
()));
}
}
if
(
Objects
.
nonNull
(
vo
.
getCertId
()))
{
if
(
Objects
.
nonNull
(
vo
.
getCertId
()))
{
criteria
.
like
(
"cert_id"
,
vo
.
getCertId
());
criteria
.
like
(
"e.cert_id"
,
vo
.
getCertId
());
}
if
(
Objects
.
nonNull
(
vo
.
getAuditPersonName
()))
{
criteria
.
like
(
"cp.person_name"
,
vo
.
getAuditPersonName
());
}
}
if
(
Objects
.
nonNull
(
vo
.
getAppPersonName
()))
{
if
(
Objects
.
nonNull
(
vo
.
getAppPersonName
()))
{
criteria
.
like
(
"e.person_name"
,
vo
.
getAppPersonName
());
criteria
.
like
(
"e.person_name"
,
vo
.
getAppPersonName
());
...
...
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