1
2
3
4
5
6
7
8
9
10
11
12
| package com.ruoyi.goods.service.lottery;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.ruoyi.goods.api.domain.UserLotteryEvent;
|
|
| /**
| * @author zhibing.pu
| * @Date 2025/5/12 10:40
| */
| public interface IUserLotteryEventService extends IService<UserLotteryEvent> {
| }
|
|