Browse Source

日志列表title模糊查询

release_toaliyun_real
lrh 2 years ago
parent
commit
12f49d4921
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      mallinkService/src/main/resources/mapper/WxCardDailyLogMapper.xml

+ 3
- 3
mallinkService/src/main/resources/mapper/WxCardDailyLogMapper.xml View File

@@ -37,13 +37,13 @@
and `parent_tenant_id` = #{parentTenantId} and `parent_tenant_id` = #{parentTenantId}
</if> </if>
<if test=" null != cardPasswordId "> <if test=" null != cardPasswordId ">
and `card_password_id` = #{cardPasswordId}
and `card_password_id` like concat('%', #{cardPasswordId},'%')
</if> </if>
<if test=" null != couponId "> <if test=" null != couponId ">
and `coupon_id` = #{couponId}
and `coupon_id` like concat('%', #{couponId},'%')
</if> </if>
<if test=" null != cardInfoId "> <if test=" null != cardInfoId ">
and `card_info_id` = #{cardInfoId}
and `card_info_id` like concat('%', #{cardInfoId},'%')
</if> </if>
<if test=" null != type "> <if test=" null != type ">
and `type` = #{type} and `type` = #{type}


Loading…
Cancel
Save