Pu Zhibing
2025-06-19 d4093d81c0d60e830cb8372b40c1d7d042ce9239
ruoyi-modules/ruoyi-goods/src/main/java/com/ruoyi/goods/mapper/lottery/LotteryEventPrizeMapper.java
@@ -1,7 +1,7 @@
package com.ruoyi.goods.mapper.lottery;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.goods.api.domain.LotteryEventPrize;
import com.ruoyi.goods.api.domain.TLotteryEventPrize;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@@ -10,10 +10,10 @@
 * @author zhibing.pu
 * @Date 2025/5/12 9:55
 */
public interface LotteryEventPrizeMapper extends BaseMapper<LotteryEventPrize> {
public interface LotteryEventPrizeMapper extends BaseMapper<TLotteryEventPrize> {
    void deleteByLotteryEventId(@Param("lotteryEventId") String lotteryEventId);
    void savePrizeList(@Param("list") List<LotteryEventPrize> prizeList);
    List<LotteryEventPrize> getPrizeListByLotteryEventId(@Param("lotteryEventId") String lotteryEventId);
    void savePrizeList(@Param("list") List<TLotteryEventPrize> prizeList);
    List<TLotteryEventPrize> getPrizeListByLotteryEventId(@Param("lotteryEventId") String lotteryEventId);
}