1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.yeshi.fanli.dao.mybatis.user;
|
| import java.util.List;
|
| import org.apache.ibatis.annotations.Param;
|
| import com.yeshi.fanli.dao.BaseMapper;
| import com.yeshi.fanli.entity.bus.user.DeviceLotteryRecord;
|
| public interface DeviceLotteryRecordMapper extends BaseMapper<DeviceLotteryRecord> {
|
| /**
| * 根据 平台、设备 查询抽奖记录
| * @param platform
| * @param device
| * @return
| */
| List<DeviceLotteryRecord> listByPlatformAndDevice(@Param("platform")int platform, @Param("device")String device);
| }
|
|