huliguo
2025-06-19 79ea07fd17817c03af14d23f0386e325335039a9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ruoyi.goods.service.lottery;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.goods.api.domain.LotteryEventPrize;
 
import java.util.List;
 
/**
 * @author zhibing.pu
 * @Date 2025/5/12 9:56
 */
public interface ILotteryEventPrizeService extends IService<LotteryEventPrize> {
    void deleteByLotteryEventId(String lotteryEventId);
 
    void savePrizeList(List<LotteryEventPrize> prizeList);
}