Pu Zhibing
2025-05-08 afdd96be3f266ee04e7c4a427eb010708e1cace3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.goods.service.impl.lottery;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.goods.api.domain.LotteryEvent;
import com.ruoyi.goods.mapper.lottery.LotteryEventMapper;
import com.ruoyi.goods.service.lottery.ILotteryEventService;
import org.springframework.stereotype.Service;
 
/**
 * @author zhibing.pu
 * @Date 2025/5/8 18:05
 */
@Service
public class LotteryEventServiceImpl extends ServiceImpl<LotteryEventMapper, LotteryEvent> implements ILotteryEventService {
}