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
44
| package com.yeshi.fanli.service.inter.order;
|
| import java.math.BigDecimal;
|
| /**
| * 用户订单统计服务
| *
| * @author Administrator
| *
| */
| public interface OrderUserStatisticService {
| /**
| * 返利超过超过50元的订单数量
| *
| * @param uid
| * @return
| */
| public int countHongBaoOrderCount50MoreByUid(Long uid);
|
| /**
| * 维权订单数量(包含邀请赚)
| *
| * @param uid
| * @return
| */
| public int countWeiQuanOrderByUid(Long uid);
|
| /**
| * 维权订单返还的金额
| *
| * @param uid
| * @return
| */
| public BigDecimal sumWeiQuanOrderFanAmountByUid(Long uid);
|
| /**
| * 安全订单数量
| *
| * @param uid
| * @return
| */
| public int countSafeOrderByUid(Long uid);
|
| }
|
|