huliguo
2025-06-19 4ff383b3c9e251c73b3825005fbaa045403d8cc9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.goods.mapper.lottery;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.goods.api.domain.LotteryEventPrize;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * @author zhibing.pu
 * @Date 2025/5/12 9:55
 */
public interface LotteryEventPrizeMapper extends BaseMapper<LotteryEventPrize> {
    void deleteByLotteryEventId(@Param("lotteryEventId") String lotteryEventId);
 
    void savePrizeList(@Param("list") List<LotteryEventPrize> prizeList);
 
    List<LotteryEventPrize> getPrizeListByLotteryEventId(@Param("lotteryEventId") String lotteryEventId);
}