| | |
| | | |
| | | import com.ruoyi.member.domain.pojo.coupon.CouponTotal; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface CouponTotalMapper extends BaseMapper<CouponTotal> { |
| | | |
| | | /** |
| | | * @description 更新优惠券统计 |
| | | * @author jqs |
| | | * @date 2023/9/19 18:08 |
| | | * @param couponId |
| | | * @param sendCount |
| | | * @param sendUserCount |
| | | * @return Integer |
| | | */ |
| | | Integer updateCouponTotal(@Param("couponId")String couponId, @Param("sendCount")Integer sendCount, @Param("sendUserCount")Integer sendUserCount); |
| | | } |