| | |
| | | import com.ruoyi.goods.service.lottery.ILotteryEventPrizeService; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | | * @Date 2025/5/12 9:56 |
| | | */ |
| | | @Service |
| | | public class LotteryEventPrizeServiceImpl extends ServiceImpl<LotteryEventPrizeMapper, LotteryEventPrize> implements ILotteryEventPrizeService { |
| | | @Override |
| | | public void deleteByLotteryEventId(String lotteryEventId) { |
| | | this.baseMapper.deleteByLotteryEventId(lotteryEventId); |
| | | } |
| | | |
| | | @Override |
| | | public void savePrizeList(List<LotteryEventPrize> prizeList) { |
| | | this.baseMapper.savePrizeList(prizeList); |
| | | } |
| | | } |