| | |
| | | left join t_house h on t.house_id = h.id |
| | | <where> |
| | | |
| | | <if test="query.status != null and query.status != ''"> |
| | | AND t.status = #{query.status} |
| | | <if test="query.status != null and query.status != '' and query.status == 1"> |
| | | AND t.status = 0 |
| | | </if> |
| | | <if test="query.status != null and query.status != '' and query.status == 2"> |
| | | AND t.status = 1 |
| | | </if> |
| | | <if test="query.houseNameOrAddress != null and query.houseNameOrAddress != ''"> |
| | | AND (h.house_name LIKE concat('%', #{query.houseNameOrAddress}, '%') or h.house_address LIKE concat('%', #{query.houseNameOrAddress}, '%')) |