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