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
34
35
36
37
38
39
40
41
42
43
| package com.yeshi.fanli.service.inter.integral;
|
| import java.util.Date;
| import java.util.List;
|
| import com.yeshi.fanli.entity.integral.IntegralDetail;
| import com.yeshi.fanli.vo.integral.IntegralDetailVO;
|
| public interface IntegralDetailService {
|
| /**
| * 积分明细
| * @param uid
| * @param detailId
| * @param maxTime
| * @return
| */
| public List<IntegralDetailVO> listDetailForClient(Long uid, Long detailId, Date maxTime, Integer type);
|
| /**
| * 明细统计
| * @param uid
| * @param detailId
| * @param maxTime
| * @return
| */
| public long countDetailForClient(Long uid, Long detailId, Date maxTime, Integer type);
|
| /**
| *
| * @param record
| */
| public void insertSelective(IntegralDetail record);
|
|
| /**
| * 唯一值查询
| * @param uniqueKey
| * @return
| */
| public IntegralDetail getDetailByUniqueKey(String uniqueKey);
|
| }
|
|