| | |
| | | package com.ruoyi.goods.mapper.lottery; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.ruoyi.goods.api.domain.LotteryEvent; |
| | | import com.ruoyi.goods.domain.vo.AppLotteryEventPageVo; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | | * @Date 2025/5/8 18:00 |
| | | */ |
| | | public interface LotteryEventMapper extends BaseMapper<LotteryEvent> { |
| | | |
| | | |
| | | /** |
| | | * 查询APP端普通抽奖列表数据 |
| | | * |
| | | * @param page |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | List<AppLotteryEventPageVo> pageAppLotteryEvent(Page<AppLotteryEventPageVo> page, @Param("userId") Long userId); |
| | | } |