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
| package com.yeshi.fanli.service.inter.integral;
|
| import java.util.List;
|
| import com.yeshi.fanli.entity.integral.IntegralExchange;
|
| public interface IntegralExchangeRecordService {
|
| /**
| * 查询兑换列表
| * @param start
| * @param count
| * @param uid
| * @return
| */
| public List<IntegralExchange> listExchange(long start, int count, Long uid);
|
| /**
| * 今日任务统计
| * @param exchangeid
| * @param uid
| * @return
| */
| public long countRecordByUid(long exchangeid, Long uid);
| }
|
|