Helius
2022-03-09 38179780b2f728abe6dd0e5aaa284c6ee6aa8380
src/main/resources/mapper/member/MemberPaymentMethodDao.xml
@@ -5,4 +5,19 @@
   <select id="selectByMemberId" resultType="com.xcong.excoin.modules.member.entity.MemberPaymentMethodEntity">
      SELECT a.* FROM member_payment_method a WHERE a.member_id = #{memberId}
   </select>
   <select id="selectDefualtMethod" resultType="com.xcong.excoin.modules.member.entity.MemberPaymentMethodEntity">
      select * from member_payment_method
      <where>
         <if test="memberId != null">
            and member_id=#{memberId}
         </if>
         <if test="isDefault != null and isDefault != ''">
            and is_defualt = #{isDefault}
         </if>
         <if test="type != null">
            and payment_type = #{type}
         </if>
      </where>
   </select>
</mapper>