Browse Source

房屋画像列表

master
lichao 2 years ago
parent
commit
601d806ce4
  1. 10
      epmet-module/gov-org/gov-org-server/src/main/resources/mapper/IcHouseDao.xml

10
epmet-module/gov-org/gov-org-server/src/main/resources/mapper/IcHouseDao.xml

@ -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 &gt;= #{timeStart}
and house.CREATED_TIME &gt;= #{timeStart}
</if>
<if test="timeEnd != null">
and CREATED_TIME &lt;= #{timeEnd}
and house.CREATED_TIME &lt;= #{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>

Loading…
Cancel
Save