| | |
| | | package com.yeshi.fanli.service.inter.redpack;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import com.yeshi.fanli.entity.redpack.RedPackForbidRecord;
|
| | |
|
| | | public interface RedPackForbidRecordService {
|
| | |
|
| | | public void insertSelective(RedPackForbidRecord record);
|
| | |
|
| | | /**
|
| | | * 查询历史记录
|
| | | * @param page
|
| | | * @param pageSize
|
| | | * @param key
|
| | | * @return
|
| | | */
|
| | | public List<RedPackForbidRecord> query(int page, int pageSize, String key);
|
| | |
|
| | | public long count(String key);
|
| | |
|
| | | /**
|
| | | * 查询封禁用户
|
| | | * @param page
|
| | | * @param pageSize
|
| | | * @param key
|
| | | * @return
|
| | | */
|
| | | public List<RedPackForbidRecord> queryForbid(int page, int pageSize, String key);
|
| | |
|
| | | public long countForbid(String key);
|
| | | }
|
| | | package com.yeshi.fanli.service.inter.redpack; |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.yeshi.fanli.entity.redpack.RedPackForbidRecord; |
| | | |
| | | public interface RedPackForbidRecordService { |
| | | |
| | | public void insertSelective(RedPackForbidRecord record); |
| | | |
| | | /** |
| | | * 查询历史记录 |
| | | * @param page |
| | | * @param pageSize |
| | | * @param key |
| | | * @return |
| | | */ |
| | | public List<RedPackForbidRecord> query(int page, int pageSize, String key); |
| | | |
| | | public long count(String key); |
| | | |
| | | /** |
| | | * 查询封禁用户 |
| | | * @param page |
| | | * @param pageSize |
| | | * @param key |
| | | * @return |
| | | */ |
| | | public List<RedPackForbidRecord> queryForbid(int page, int pageSize, String key); |
| | | |
| | | public long countForbid(String key); |
| | | } |