huliguo
8 天以前 79ea07fd17817c03af14d23f0386e325335039a9
ruoyi-modules/ruoyi-goods/src/main/java/com/ruoyi/goods/mapper/lottery/LotteryEventPrizeMapper.java
@@ -2,10 +2,16 @@
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);
}