| | |
| | | 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); |
| | | 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);
|
| | | } |