1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| package com.ruoyi.member.mapper.coupon;
|
| import com.ruoyi.member.domain.pojo.coupon.CouponTotal;
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import org.apache.ibatis.annotations.Param;
|
| /**
| * <p>
| * 优惠券统计 Mapper 接口
| * </p>
| *
| * @author jqs
| * @since 2023-04-25
| */
| 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);
| }
|
|