Commit c4ca97b5 authored by lixuan's avatar lixuan

feat: 房源

parent 77ea9c16
Pipeline #144723 failed with stages
in 32 minutes and 19 seconds
......@@ -65,4 +65,8 @@ public class HouseResourcePageQuery extends PageDomain {
private BigDecimal yearTaxMin;
private BigDecimal yearTaxMax;
private BigDecimal unitPriceMin;
private BigDecimal unitPriceMax;
}
......@@ -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=")">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment