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
c4ca97b5
Commit
c4ca97b5
authored
May 23, 2025
by
lixuan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 房源
parent
77ea9c16
Pipeline
#144723
failed with stages
in 32 minutes and 19 seconds
Changes
2
Pipelines
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
HouseResourcePageQuery.java
.../ruoyi/system/domain/house/vo/HouseResourcePageQuery.java
+4
-0
HouseResourceMapper.xml
...m/src/main/resources/mapper/house/HouseResourceMapper.xml
+3
-0
No files found.
ruoyi-system/src/main/java/com/ruoyi/system/domain/house/vo/HouseResourcePageQuery.java
View file @
c4ca97b5
...
...
@@ -65,4 +65,8 @@ public class HouseResourcePageQuery extends PageDomain {
private
BigDecimal
yearTaxMin
;
private
BigDecimal
yearTaxMax
;
private
BigDecimal
unitPriceMin
;
private
BigDecimal
unitPriceMax
;
}
ruoyi-system/src/main/resources/mapper/house/HouseResourceMapper.xml
View file @
c4ca97b5
...
...
@@ -169,6 +169,9 @@
<if
test=
"query.yearTaxMin != null and query.yearTaxMin != '' and query.yearTaxMax != null and query.yearTaxMax != ''"
>
and t4.year_tax
<![CDATA[ >= ]]>
#{query.yearTaxMin} and t4.year_tax
<![CDATA[ <= ]]>
#{query.yearTaxMax}
</if>
<if
test=
"query.unitPriceMin != null and query.unitPriceMin != '' and query.unitPriceMax != null and query.unitPriceMax != ''"
>
and t1.unit_price
<![CDATA[ >= ]]>
#{query.unitPriceMin} and t1.unit_price
<![CDATA[ <= ]]>
#{query.unitPriceMax}
</if>
<if
test=
"query.wgCodes != null and query.wgCodes.size() > 0"
>
and t1.two in
<foreach
item=
"item"
index=
"index"
collection=
"query.wgCodes"
open=
"("
separator=
","
close=
")"
>
...
...
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