|
|
@ -817,18 +817,18 @@ |
|
|
|
|
|
|
|
where house.DEL_FLAG = '0' |
|
|
|
and |
|
|
|
ORG_ID_PATH like concat(#{orgId},'%') |
|
|
|
house.ORG_ID_PATH like concat(#{orgId},'%') |
|
|
|
<if test="timeStart != null"> |
|
|
|
and CREATED_TIME >= #{timeStart} |
|
|
|
and house.CREATED_TIME >= #{timeStart} |
|
|
|
</if> |
|
|
|
<if test="timeEnd != null"> |
|
|
|
and CREATED_TIME <= #{timeEnd} |
|
|
|
and house.CREATED_TIME <= #{timeEnd} |
|
|
|
</if> |
|
|
|
<if test="purpose != null and purpose != ''"> |
|
|
|
and PURPOSE = #{purpose} |
|
|
|
and house.PURPOSE = #{purpose} |
|
|
|
</if> |
|
|
|
<if test="rentFlag != null and rentFlag != ''"> |
|
|
|
and RENT_FLAG = #{rentFlag} |
|
|
|
and house.RENT_FLAG = #{rentFlag} |
|
|
|
</if> |
|
|
|
|
|
|
|
|
|
|
|