|
|
|
@ -89,26 +89,26 @@
|
|
|
|
|
and md.measure_data_id IS not NULL |
|
|
|
|
</if> |
|
|
|
|
<if test='"listed" == landVo.transactionStatus'> |
|
|
|
|
and date_format(ll.auction_date,'%Y-%m-%d') > #{nowDate} |
|
|
|
|
and date_format(ll.auction_date,'%Y-%m-%d') > #{landVo.nowDate} |
|
|
|
|
</if> |
|
|
|
|
<if test='"passBy" == landVo.transactionStatus'> |
|
|
|
|
and date_format(ll.auction_date,'%Y-%m-%d') < #{nowDate} |
|
|
|
|
and date_format(ll.auction_date,'%Y-%m-%d') < #{landVo.nowDate} |
|
|
|
|
and ll.deal = 0 |
|
|
|
|
</if> |
|
|
|
|
<if test='"dealDone" == landVo.transactionStatus'> |
|
|
|
|
and ll.deal = 1 |
|
|
|
|
</if> |
|
|
|
|
<if test="landVo.startDate != null and landVo.startDate != ''"> |
|
|
|
|
and date_format(ll.auction_date,'%Y-%m-%d') >= #{startDate} |
|
|
|
|
</if> |
|
|
|
|
<if test="landVo.endDate != null and landVo.endDate != ''"> |
|
|
|
|
and date_format(ll.auction_date,'%Y-%m-%d') <= #{endDate} |
|
|
|
|
</if> |
|
|
|
|
<if test="landVo.city != null and landVo.city != ''"> |
|
|
|
|
and ll.city = #{city} |
|
|
|
|
and ll.city = #{landVo.city} |
|
|
|
|
</if> |
|
|
|
|
<if test="landVo.canton != null and landVo.canton != ''"> |
|
|
|
|
and ll.canton = #{canton} |
|
|
|
|
and ll.canton = #{landVo.canton} |
|
|
|
|
</if> |
|
|
|
|
<if test="landVo.startDate != null and landVo.startDate != ''"> |
|
|
|
|
and date_format(ll.auction_date,'%Y-%m-%d') >= #{landVo.startDate} |
|
|
|
|
</if> |
|
|
|
|
<if test="landVo.endDate != null and landVo.endDate != ''"> |
|
|
|
|
and date_format(ll.auction_date,'%Y-%m-%d') <= #{landVo.endDate} |
|
|
|
|
</if> |
|
|
|
|
</where> |
|
|
|
|
|
|
|
|
|