Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gf_back
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tianchao
gf_back
Commits
a3c0f349
Commit
a3c0f349
authored
Jun 14, 2023
by
tianchao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.过滤数据
parent
7d948953
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
0 deletions
+1
-0
C09-base/pps-core-base/src/main/java/pps/core/base/service/BaseProjectInfoService.java
...in/java/pps/core/base/service/BaseProjectInfoService.java
+1
-0
No files found.
C09-base/pps-core-base/src/main/java/pps/core/base/service/BaseProjectInfoService.java
View file @
a3c0f349
...
@@ -163,6 +163,7 @@ public class BaseProjectInfoService {
...
@@ -163,6 +163,7 @@ public class BaseProjectInfoService {
public
XPageResult
<
QueryBaseProjectInfoOutput
>
queryProjectInfoList
(
XContext
context
,
QueryProjectInfoInput
input
){
public
XPageResult
<
QueryBaseProjectInfoOutput
>
queryProjectInfoList
(
XContext
context
,
QueryProjectInfoInput
input
){
BaseProjectInfoMapper
mapper
=
context
.
getBean
(
BaseProjectInfoMapper
.
class
);
BaseProjectInfoMapper
mapper
=
context
.
getBean
(
BaseProjectInfoMapper
.
class
);
QueryWrapper
<
BaseProjectInfoEnt
>
queryWrapper
=
new
QueryWrapper
<>();
QueryWrapper
<
BaseProjectInfoEnt
>
queryWrapper
=
new
QueryWrapper
<>();
queryWrapper
.
lambda
().
eq
(
BaseProjectInfoEnt:
:
getIsDeleted
,
0
);
if
(
XStringUtils
.
isNotEmpty
(
input
.
getProjectName
()))
if
(
XStringUtils
.
isNotEmpty
(
input
.
getProjectName
()))
queryWrapper
.
lambda
().
like
(
BaseProjectInfoEnt:
:
getProjectName
,
input
.
getProjectName
());
queryWrapper
.
lambda
().
like
(
BaseProjectInfoEnt:
:
getProjectName
,
input
.
getProjectName
());
if
(
input
.
getProductionYear
()
!=
null
)
if
(
input
.
getProductionYear
()
!=
null
)
...
...
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