1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
| 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);
| }
|
|