Browse Source

用户收益明细

master
张彭杰 1 year ago
parent
commit
35a26b08a5
1 changed files with 3 additions and 0 deletions
  1. 3
      dating-agency-mall-server/src/main/resources/mapper/order/WalletAccountAssociateOrderRecordDao.xml

3
dating-agency-mall-server/src/main/resources/mapper/order/WalletAccountAssociateOrderRecordDao.xml

@ -67,6 +67,9 @@
<if test="queryParam.orderCode != null and queryParam.orderCode != '' "> <if test="queryParam.orderCode != null and queryParam.orderCode != '' ">
AND dao.order_code LIKE CONCAT('%', TRIM(#{queryParam.orderCode}), '%') AND dao.order_code LIKE CONCAT('%', TRIM(#{queryParam.orderCode}), '%')
</if> </if>
<if test="queryParam.name != null and queryParam.name != '' ">
AND dao.name LIKE CONCAT('%', TRIM(#{queryParam.name}), '%')
</if>
<if test="queryParam.orderTimeFrom != null and queryParam.orderTimeTo != null"> <if test="queryParam.orderTimeFrom != null and queryParam.orderTimeTo != null">
and dao.create_time BETWEEN #{queryParam.orderTimeFrom} and #{queryParam.orderTimeTo} and dao.create_time BETWEEN #{queryParam.orderTimeFrom} and #{queryParam.orderTimeTo}
</if> </if>

Loading…
Cancel
Save