浏览代码

update 分润设置

周箭河 5 年之前
父节点
当前提交
0f3905f599
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      mec-biz/src/main/resources/config/mybatis/SysPaymentConfigMapper.xml

+ 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>