| | |
| | | |
| | | import com.yeshi.fanli.dao.BaseMapper; |
| | | import com.yeshi.fanli.entity.redpack.RedPackGiveRecord; |
| | | import com.yeshi.fanli.vo.redpack.RedPackGiveVO; |
| | | |
| | | public interface RedPackGiveRecordMapper extends BaseMapper<RedPackGiveRecord> { |
| | | |
| | |
| | | * @return |
| | | */ |
| | | List<RedPackGiveRecord> overdueList(@Param("count") int count); |
| | | |
| | | |
| | | /** |
| | | * 查询用户赠送记录 |
| | | * @param start |
| | | * @param count |
| | | * @param uid |
| | | * @return |
| | | */ |
| | | List<RedPackGiveVO> getGiveList(@Param("start") long start, @Param("count") int count, @Param("uid") long uid); |
| | | |
| | | |
| | | long countGiveList(@Param("uid") long uid); |
| | | } |