| | |
| | | b.cost_amount costAmount, |
| | | b.real_amount realAmount |
| | | from mall_member_coupon a |
| | | left join mall_goods_coupon b on b.id = a.coupon_id and b.state = 2 |
| | | INNER join mall_goods_coupon b on b.id = a.coupon_id and b.state = 2 |
| | | <where> |
| | | a.member_id=#{record.memberId} |
| | | <if test="record.state == 1"> |
| | |
| | | and a.state = 1 |
| | | </select> |
| | | |
| | | <select id="selectListByMemberIdAndGoodsIdAndCouponIdWithOutInviteId" resultType="cc.mrbird.febs.mall.entity.MallMemberCoupon"> |
| | | select |
| | | a.* |
| | | from mall_member_coupon a |
| | | where a.member_id = #{memberId} |
| | | and a.goods_id = #{goodsId} |
| | | and a.state = 1 |
| | | </select> |
| | | |
| | | </mapper> |