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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
| package com.yeshi.fanli.service.inter.order.msg;
|
| import java.math.BigDecimal;
| import java.util.Date;
|
| /**
| * 用户订单消息通知
| *
| * @author Administrator
| *
| */
| public interface UserOrderMsgNotificationService {
| /**
| * 返利订单统计
| *
| * @param uid
| * @param orderId
| * @param payMoney
| * @param money
| * @param goodsCount
| * @param orderState
| */
|
| public void orderFanLiStatistic(Long uid, String orderId,int orderType, BigDecimal payMoney, BigDecimal money, int goodsCount,
| int orderState);
|
| /**
| * 返利订单状态改变
| *
| * @param uid
| * @param orderId
| * @param payMoney
| * @param money
| * @param orderState
| */
| public void orderFanLiStateChanged(Long uid, String orderId,int orderType, BigDecimal payMoney, BigDecimal money, int orderState);
|
| /**
| * 分享订单统计
| *
| * @param uid
| * @param orderId
| * @param payMoney
| * @param money
| * @param goodsCount
| * @param orderState
| */
| public void orderShareStatistic(Long uid, String orderId,int orderType, BigDecimal payMoney, BigDecimal money, int goodsCount,
| int orderState);
|
| /**
| * 分享订单状态改变
| *
| * @param uid
| * @param orderId
| * @param payMoney
| * @param money
| * @param orderState
| */
| public void orderShareStateChanged(Long uid, String orderId,int orderType, BigDecimal payMoney, BigDecimal money, int orderState);
|
| /**
| * 邀请订单统计
| *
| * @param uid
| * @param orderId
| * @param payMoney
| * @param money
| * @param goodsCount
| * @param orderState
| */
| public void orderInviteStatistic(Long uid, String orderId,int orderType, BigDecimal payMoney, BigDecimal money, int goodsCount,
| int orderState);
|
| /**
| * 邀请订单状态改变
| *
| * @param uid
| * @param orderId
| * @param payMoney
| * @param money
| * @param orderState
| */
| public void orderInviteStateChanged(Long uid, String orderId,int orderType, BigDecimal payMoney, BigDecimal money,
| int orderState);
|
| public void orderShareFirstLevelStatistic(Long uid, String orderId,int orderType, BigDecimal payMoney, BigDecimal money,
| int goodsCount, int orderState, String sourceUserName);
|
| /**
| * 分享订单状态改变
| *
| * @param uid
| * @param orderId
| * @param payMoney
| * @param money
| * @param orderState
| */
| public void orderShareFirstLevelStateChanged(Long uid, String orderId,int orderType, BigDecimal payMoney, BigDecimal money,
| int orderState);
|
| /**
| * 订单找回成功
| *
| * @param uid
| * @param orderId
| * @param payMoney
| * @param money
| * @param orderType
| */
| public void orderFoundSuccess(Long uid, String orderId, BigDecimal payMoney, int orderType,Date happendDate);
|
| /**
| * 订单找回失败
| *
| * @param uid
| * @param orderId
| * @param payMoney
| * @param goodsCount
| * @param orderType 1-淘宝
| */
| public void orderFoundFail(Long uid, String orderId, BigDecimal payMoney, int orderType,Date happendDate);
|
| }
|
|