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