Commit 77ea9c16 authored by lixuan's avatar lixuan

feat: 房源

parent 2740f174
Pipeline #144721 failed with stages
in 7 minutes and 43 seconds
......@@ -61,4 +61,8 @@ public class HouseResourcePageQuery extends PageDomain {
private BigDecimal dayPriceMin;
private BigDecimal dayPriceMax;
private BigDecimal yearTaxMin;
private BigDecimal yearTaxMax;
}
......@@ -166,6 +166,9 @@
<if test="query.yearSellMin != null and query.yearSellMin != '' and query.yearSellMax != null and query.yearSellMax != ''">
and t4.year_sell <![CDATA[ >= ]]> #{query.yearSellMin} and t4.year_sell <![CDATA[ <= ]]> #{query.yearSellMax}
</if>
<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.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