Browse Source

租房审核PC端新增

feature/addRentHouseOfPC
wanggongfeng 3 years ago
parent
commit
0559aecf09
  1. 7
      epmet-plugins-module/pli-power-base/pli-power-base-server/src/main/resources/mapper/rent/RentContractInfoDao.xml

7
epmet-plugins-module/pli-power-base/pli-power-base-server/src/main/resources/mapper/rent/RentContractInfoDao.xml

@ -43,8 +43,11 @@
LEFT JOIN pli_rent_blacklist b ON i.LESSEE_ID_CARD = b.ID_CARD AND b.DEL_FLAG = '0' LEFT JOIN pli_rent_blacklist b ON i.LESSEE_ID_CARD = b.ID_CARD AND b.DEL_FLAG = '0'
WHERE WHERE
i.DEL_FLAG = '0' i.DEL_FLAG = '0'
<if test="isPcInput != null and isPcInput != ''"> <if test="isPcInput != null and isPcInput != '' and isPcInput == '1'">
AND i.IS_PC_INPUT = #{isPcInput} AND i.IS_PC_INPUT = '1'
</if>
<if test="isPcInput != null and isPcInput != '' and isPcInput == '0'">
AND i.IS_PC_INPUT != '1'
</if> </if>
<if test="customerId != null and customerId != ''"> <if test="customerId != null and customerId != ''">
AND i.CUSTOMER_ID = #{customerId} AND i.CUSTOMER_ID = #{customerId}

Loading…
Cancel
Save