Browse Source

[积分][修改]:B端积分操作记录列表

release_toaliyun_real
hanxueda 7 years ago
parent
commit
572b11587d
1 changed files with 7 additions and 4 deletions
  1. +7
    -4
      mallinkService/src/main/resources/mapper/WxCreditHistoryMapper.xml

+ 7
- 4
mallinkService/src/main/resources/mapper/WxCreditHistoryMapper.xml View File

@@ -90,17 +90,20 @@
<if test=" null != tenantId ">
and credit.tenant_id = #{tenantId}
</if>
<if test=" null != operatorType ">
and credit.operator_type = #{operatorType}
</if>
<if test=" null != operatorId ">
and `operator_id` = #{operatorId}
and credit.operator_id = #{operatorId}
</if>
<if test=" null != creditType ">
and `credit_type` = #{creditType}
and credit.credit_type = #{creditType}
</if>
<if test=" null != cUserId ">
and `c_user_id` = #{cUserId}
and credit.c_user_id = #{cUserId}
</if>
<if test=" null != merchantId ">
and `merchant_id` = #{merchantId}
and credit.merchant_id = #{merchantId}
</if>
</sql>



Loading…
Cancel
Save