yujian
2019-10-09 b44f60ae27bbe0b7aec29414c629747b7755e964
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
33
package com.yeshi.fanli.service.inter.user.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, Integer today);
 
    /**
     * 添加兑换记录
     * @param exchangeid
     * @param uid
     */
    public void addExchangeRecord(long exchangeid, Long uid);
}