You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
404 B

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="cc.hiver.mall.dao.mapper.MallCouponMapper">
<update id="deductStock">
UPDATE t_mall_coupon
SET remain_count = remain_count - 1
WHERE id = #{id} AND remain_count > 0 AND del_flag = 0
</update>
</mapper>