Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yichengstreet-be
Project
Project
Details
Activity
Releases
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
yichengstreet
yichengstreet-be
Commits
0e8bc019
Commit
0e8bc019
authored
Jul 24, 2025
by
lixuan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 房源
parent
fecad878
Pipeline
#145489
failed with stages
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
0 deletions
+26
-0
HouseResourcePageQuery.java
.../ruoyi/system/domain/house/vo/HouseResourcePageQuery.java
+2
-0
HouseResourceMapper.xml
...m/src/main/resources/mapper/house/HouseResourceMapper.xml
+24
-0
No files found.
ruoyi-system/src/main/java/com/ruoyi/system/domain/house/vo/HouseResourcePageQuery.java
View file @
0e8bc019
...
@@ -24,6 +24,8 @@ public class HouseResourcePageQuery extends PageDomain {
...
@@ -24,6 +24,8 @@ public class HouseResourcePageQuery extends PageDomain {
private
Integer
wgType
;
private
Integer
wgType
;
private
List
<
Integer
>
wgTypes
;
private
Integer
hireStatus
;
private
Integer
hireStatus
;
private
String
houseNumber
;
private
String
houseNumber
;
...
...
ruoyi-system/src/main/resources/mapper/house/HouseResourceMapper.xml
View file @
0e8bc019
...
@@ -140,6 +140,12 @@
...
@@ -140,6 +140,12 @@
<if
test=
"query.wgType != null"
>
<if
test=
"query.wgType != null"
>
and t1.type = #{query.wgType}
and t1.type = #{query.wgType}
</if>
</if>
<if
test=
"query.wgTypes != null and query.wgTypes.size() > 0"
>
and t1.type in
<foreach
item=
"item"
index=
"index"
collection=
"query.wgTypes"
open=
"("
separator=
","
close=
")"
>
#{item}
</foreach>
</if>
<if
test=
"query.two != null and query.two != ''"
>
<if
test=
"query.two != null and query.two != ''"
>
and t1.two = #{query.two}
and t1.two = #{query.two}
</if>
</if>
...
@@ -301,6 +307,12 @@
...
@@ -301,6 +307,12 @@
<if
test=
"query.wgType != null"
>
<if
test=
"query.wgType != null"
>
and t1.type = #{query.wgType}
and t1.type = #{query.wgType}
</if>
</if>
<if
test=
"query.wgTypes != null and query.wgTypes.size() > 0"
>
and t1.type in
<foreach
item=
"item"
index=
"index"
collection=
"query.wgTypes"
open=
"("
separator=
","
close=
")"
>
#{item}
</foreach>
</if>
<if
test=
"query.two != null and query.two != ''"
>
<if
test=
"query.two != null and query.two != ''"
>
and t1.two = #{query.two}
and t1.two = #{query.two}
</if>
</if>
...
@@ -456,6 +468,12 @@
...
@@ -456,6 +468,12 @@
<if
test=
"query.wgType != null"
>
<if
test=
"query.wgType != null"
>
and t1.type = #{query.wgType}
and t1.type = #{query.wgType}
</if>
</if>
<if
test=
"query.wgTypes != null and query.wgTypes.size() > 0"
>
and t1.type in
<foreach
item=
"item"
index=
"index"
collection=
"query.wgTypes"
open=
"("
separator=
","
close=
")"
>
#{item}
</foreach>
</if>
<if
test=
"query.two != null and query.two != ''"
>
<if
test=
"query.two != null and query.two != ''"
>
and t1.two = #{query.two}
and t1.two = #{query.two}
</if>
</if>
...
@@ -635,6 +653,12 @@
...
@@ -635,6 +653,12 @@
<if
test=
"query.wgType != null"
>
<if
test=
"query.wgType != null"
>
and t1.type = #{query.wgType}
and t1.type = #{query.wgType}
</if>
</if>
<if
test=
"query.wgTypes != null and query.wgTypes.size() > 0"
>
and t1.type in
<foreach
item=
"item"
index=
"index"
collection=
"query.wgTypes"
open=
"("
separator=
","
close=
")"
>
#{item}
</foreach>
</if>
<if
test=
"query.two != null and query.two != ''"
>
<if
test=
"query.two != null and query.two != ''"
>
and t1.two = #{query.two}
and t1.two = #{query.two}
</if>
</if>
...
...
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