Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
api
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
e215c985
authored
Sep 19, 2025
by
Jony.L
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix行业应用管理搜索
parent
4605d357
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
computility-module-biz/computility-module-biz-biz/src/main/java/com/luhu/computility/module/biz/controller/admin/industryapplication/vo/IndustryApplicationPageReqVO.java
+3
-0
computility-module-biz/computility-module-biz-biz/src/main/java/com/luhu/computility/module/biz/dal/mysql/industryapplication/IndustryApplicationMapper.java
+2
-1
No files found.
computility-module-biz/computility-module-biz-biz/src/main/java/com/luhu/computility/module/biz/controller/admin/industryapplication/vo/IndustryApplicationPageReqVO.java
View file @
e215c985
...
...
@@ -19,6 +19,9 @@ public class IndustryApplicationPageReqVO extends PageParam {
@Schema
(
description
=
"状态:0-已隐藏,1-已显示"
,
example
=
"1"
)
private
Integer
showStatus
;
@Schema
(
description
=
"内容"
)
private
String
information
;
@Schema
(
description
=
"创建时间"
)
@DateTimeFormat
(
pattern
=
FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND
)
private
LocalDateTime
[]
createTime
;
...
...
computility-module-biz/computility-module-biz-biz/src/main/java/com/luhu/computility/module/biz/dal/mysql/industryapplication/IndustryApplicationMapper.java
View file @
e215c985
...
...
@@ -21,7 +21,8 @@ public interface IndustryApplicationMapper extends BaseMapperX<IndustryApplicati
default
PageResult
<
IndustryApplicationDO
>
selectPage
(
IndustryApplicationPageReqVO
reqVO
)
{
return
selectPage
(
reqVO
,
new
LambdaQueryWrapperX
<
IndustryApplicationDO
>()
.
eqIfPresent
(
IndustryApplicationDO:
:
getTitle
,
reqVO
.
getTitle
())
.
likeIfPresent
(
IndustryApplicationDO:
:
getTitle
,
reqVO
.
getTitle
())
.
likeIfPresent
(
IndustryApplicationDO:
:
getInformation
,
reqVO
.
getInformation
())
.
eqIfPresent
(
IndustryApplicationDO:
:
getShowStatus
,
reqVO
.
getShowStatus
())
.
betweenIfPresent
(
IndustryApplicationDO:
:
getCreateTime
,
reqVO
.
getCreateTime
())
.
eqIfPresent
(
IndustryApplicationDO:
:
getHomeImage
,
reqVO
.
getHomeImage
())
...
...
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