| | |
| | | package com.ruoyi.goods.service.lottery; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.goods.api.domain.LotteryEventPrize; |
| | | import com.ruoyi.goods.api.domain.TLotteryEventPrize; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @author zhibing.pu |
| | | * @Date 2025/5/12 9:56 |
| | | */ |
| | | public interface ILotteryEventPrizeService extends IService<LotteryEventPrize> { |
| | | public interface ILotteryEventPrizeService extends IService<TLotteryEventPrize> { |
| | | void deleteByLotteryEventId(String lotteryEventId); |
| | | |
| | | void savePrizeList(List<LotteryEventPrize> prizeList); |
| | | |
| | | List<LotteryEventPrize> getPrizeListByLotteryEventId(String lotteryEventId); |
| | | |
| | | void savePrizeList(List<TLotteryEventPrize> prizeList); |
| | | |
| | | List<TLotteryEventPrize> getPrizeListByLotteryEventId(String lotteryEventId); |
| | | } |