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 {
|
}
|