Browse Source

update 分润设置

周箭河 5 years ago
parent
commit
0f3905f599

+ 3 - 3
mec-biz/src/main/resources/config/mybatis/SysPaymentConfigMapper.xml

@@ -162,16 +162,16 @@
         <where>
             <if test="payType == null">
                 pay_type_ IS NOT NULL
-                AND (spc.yq_mer_no_ IS NOT NULL OR spc.hf_mer_no_ IS NOT NULL)
+                AND (spc.yq_mer_no_ !='' OR spc.hf_mer_no_ !='')
             </if>
             <if test="payType != null">
                 AND pay_type_ = #{payType,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler}
             </if>
             <if test='payType != null and payType.code.equals("YQPAY")'>
-                AND spc.yq_mer_no_ IS NOT NULL
+                AND spc.yq_mer_no_ != ''
             </if>
             <if test='payType != null and payType.code.equals("ADAPAY")'>
-                AND spc.hf_mer_no_ IS NOT NULL
+                AND spc.hf_mer_no_ !=''
             </if>
         </where>