admin
2019-09-27 0b177e19cfc810ca12195c0b4e2d934566afb6b0
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
package com.yeshi.fanli.service.inter.msg;
 
import java.math.BigDecimal;
 
import com.yeshi.fanli.dto.msg.MsgOtherCouponActivateDTO;
import com.yeshi.fanli.dto.msg.MsgOtherExchangeContentDTO;
import com.yeshi.fanli.dto.msg.MsgOtherGiveContentDTO;
import com.yeshi.fanli.dto.msg.MsgOtherRewardIntegralDTO;
import com.yeshi.fanli.dto.msg.MsgOtherSystemGiveDTO;
import com.yeshi.fanli.dto.msg.MsgOtherTaoLiJinContentDTO;
import com.yeshi.fanli.entity.bus.msg.MsgOtherDetail.MsgTypeOtherTypeEnum;
import com.yeshi.fanli.entity.bus.user.UserInfo;
import com.yeshi.fanli.entity.bus.user.UserSystemCoupon;
 
/**
 * 用户订单消息通知
 * 
 * @author Administrator
 *
 */
public interface UserOtherMsgNotificationService {
 
    // 福利奖励券
 
    /**
     * 获得福利免单券
     * 
     * @param leftDay
     * @param source
     * @param startTime
     * @param endTime
     */
    public void welfareCouponGet(UserSystemCoupon coupon);
 
    /**
     * 福利免单券激活
     * 
     * @param leftDay
     * @param startTime
     * @param endTime
     */
    public void welfareCouponActive(UserSystemCoupon coupon, UserInfo worker);
 
    /**
     * 福利免单券使用中
     * 
     * @param startTime
     * @param endTime
     */
    public void welfareCouponUsing(UserSystemCoupon coupon, String orderId, BigDecimal money);
 
    /**
     * 福利免单券已被使用
     * 
     * @param leftDay
     * @param startTime
     * @param endTime
     */
    public void welfareCouponUsed(UserSystemCoupon coupon, String orderId);
 
    /**
     * 福利免单券即将过期
     * 
     * @param leftDay
     * @param startTime
     * @param endTime
     */
    public void welfareCouponWillOutOfDate(UserSystemCoupon coupon);
 
    /**
     * 福利免单券已经过期
     * 
     * @param coupon
     */
    public void welfareCouponAlreadyOutOfDate(UserSystemCoupon coupon);
 
    /**
     * 福利免单券已经退回
     * 
     * @param coupon
     */
    public void welfareCouponDrawBack(UserSystemCoupon coupon, String orderId);
 
    // 免单券
 
    /**
     * 免单券使用
     * 
     * @param leftDay
     * @param source
     * @param startTime
     * @param endTime
     */
    public void freeSheetCouponGet(UserSystemCoupon coupon);
 
    /**
     * 免单券正在使用
     * 
     * @param source
     * @param startTime
     * @param endTime
     */
    public void freeSheetCouponUsing(UserSystemCoupon coupon, String orderId, BigDecimal money);
 
    /**
     * 免单券已经使用
     * 
     * @param leftDay
     * @param source
     * @param startTime
     * @param endTime
     */
    public void freeSheetCouponUsed(UserSystemCoupon coupon, String orderId);
 
    /**
     * 免单券即将过期
     * 
     * @param leftDay
     * @param source
     * @param startTime
     * @param endTime
     */
    public void freeSheetCouponWillOutOfDate(UserSystemCoupon coupon);
 
    /**
     * 免单券已经过期
     * 
     * @param source
     * @param startTime
     * @param endTime
     */
    public void freeSheetCouponAlreadyOutOfDate(UserSystemCoupon coupon);
 
    /**
     * 已退回
     * 
     * @param coupon
     */
    public void freeSheetCouponDrawBack(UserSystemCoupon coupon, String orderId);
 
    // 奖励券
 
    /**
     * 奖励券获得
     * 
     * @param coupon
     * @param percent
     *            -百分比
     */
    public void rewardCouponGet(UserSystemCoupon coupon, int percent);
 
    /**
     * 奖励券使用成功
     * 
     * @param coupon
     * @param oldFanLiMoney-原始返利金额
     * @param rewardMoney-奖励金额
     */
    public void rewardCouponUsed(UserSystemCoupon coupon, BigDecimal oldFanLiMoney, BigDecimal rewardMoney,
            String orderId);
 
    /**
     * 奖励券即将过期
     * 
     * @param leftDay
     * @param source
     * @param startTime
     * @param endTime
     */
    public void rewardCouponWillOutOfDate(UserSystemCoupon coupon, int percent);
 
    /**
     * 奖励券已经过期
     * 
     * @param source
     * @param startTime
     * @param endTime
     */
    public void rewardCouponAlreadyOutOfDate(UserSystemCoupon coupon);
 
    /**
     * 淘礼金消息
     * 
     * @param uid
     * @param beiZhu
     * @param content
     */
    public void taoLiJinMsg(Long uid, String beiZhu, MsgOtherTaoLiJinContentDTO content);
 
    /**
     * 口令赠送领取
     * 
     * @param uid
     * @param beiZhu
     * @param content
     */
    public void tokenGiveMsg(Long uid, String beiZhu, MsgOtherGiveContentDTO content);
 
    /**
     * 兑换消息
     * 
     * @param uid
     * @param beiZhu
     * @param content
     */
    public void exchangeMsg(Long uid, String beiZhu, MsgOtherExchangeContentDTO content);
 
    /**
     * 券退回
     * 
     * @param coupon
     * @param orderId
     * @param type
     */
    public void couponDrawBack(UserSystemCoupon coupon, String orderId, MsgTypeOtherTypeEnum type);
 
    /**
     * 券
     * 
     * @param coupon
     * @param type
     */
    public void outOfDate(UserSystemCoupon coupon, MsgTypeOtherTypeEnum type);
 
    /**
     * 免单券正在使用
     * 
     * @param source
     * @param startTime
     * @param endTime
     */
    public void couponUsingFreeSheet(UserSystemCoupon coupon, String orderId, BigDecimal money,
            MsgTypeOtherTypeEnum type);
 
    public void couponUsedFreeSheet(UserSystemCoupon coupon, String orderId, MsgTypeOtherTypeEnum type);
 
    /**
     * 赠送的免单券激活
     * 
     * @param uid
     * @param beiZhu
     * @param content
     */
    public void giveCouponActivateMsg(Long uid, String beiZhu, MsgOtherCouponActivateDTO content);
 
    /**
     * 队员首单奖励邀请人
     * 
     * @param uid
     * @param beiZhu
     * @param content
     */
    public void firstOrderRewardMsg(Long uid, String beiZhu, MsgOtherRewardIntegralDTO content);
 
    /**
     * 系统赠送的免单券
     * @param uid
     * @param beiZhu
     * @param dto
     */
    public void systemGiveRewardCoupon(Long uid, String beiZhu, MsgOtherSystemGiveDTO dto);
 
}