소스 검색

修复bug

Memory_LG 3 주 전
부모
커밋
834768dd4a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      qmjszx-business/src/main/resources/mapper/voucher/BeilvVoucherMemberMapper.xml

+ 1 - 1
qmjszx-business/src/main/resources/mapper/voucher/BeilvVoucherMemberMapper.xml

@@ -95,7 +95,7 @@
         left join sys_member m on vm.member_id = m.id
         where m.id = #{memberId}
         <if test="voucherType != null and voucherType != ''">and v.voucher_type = #{voucherType}</if>
-        <if test="payPrice != null and payPrice != ''">and v.instant_discount &gt;= #{payPrice}</if>
+        <if test="payPrice != null and payPrice != ''">and v.instant_discount &lt;= #{payPrice}</if>
         <if test="isValidity != null and isValidity != ''">and vm.is_validity = #{isValidity}</if>
     </select>
 </mapper>