From 28a0efc6ec16f3f82eb8e16e87269300d6744fd4 Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期三, 25 九月 2019 19:18:17 +0800 Subject: [PATCH] 金币版本拦截与频率拦截bug修改 --- fanli/src/main/java/com/yeshi/fanli/service/inter/msg/UserOtherMsgNotificationService.java | 112 ++++++++++++++++++++++++++++++++++++++++++++++---------- 1 files changed, 92 insertions(+), 20 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/service/inter/msg/UserOtherMsgNotificationService.java b/fanli/src/main/java/com/yeshi/fanli/service/inter/msg/UserOtherMsgNotificationService.java index 1219fca..7339391 100644 --- a/fanli/src/main/java/com/yeshi/fanli/service/inter/msg/UserOtherMsgNotificationService.java +++ b/fanli/src/main/java/com/yeshi/fanli/service/inter/msg/UserOtherMsgNotificationService.java @@ -2,6 +2,12 @@ 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.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; @@ -93,7 +99,7 @@ * @param startTime * @param endTime */ - public void freeSheetCouponUsing(UserSystemCoupon coupon); + public void freeSheetCouponUsing(UserSystemCoupon coupon,String orderId,BigDecimal money); /** * 鍏嶅崟鍒稿凡缁忎娇鐢� @@ -103,7 +109,7 @@ * @param startTime * @param endTime */ - public void freeSheetCouponUsed(UserSystemCoupon coupon); + public void freeSheetCouponUsed(UserSystemCoupon coupon,String orderId); /** * 鍏嶅崟鍒稿嵆灏嗚繃鏈� @@ -128,29 +134,26 @@ * 宸查��鍥� * @param coupon */ - public void freeSheetCouponDrawBack(UserSystemCoupon coupon); + public void freeSheetCouponDrawBack(UserSystemCoupon coupon,String orderId); // 濂栧姳鍒� - /** - * 濂栧姳鍒歌幏寰� - * - * @param leftDay - * @param source - * @param startTime - * @param endTime - */ - public void rewardCouponGet(UserSystemCoupon coupon); /** - * 濂栧姳鍒稿凡缁忎娇鐢� - * - * @param leftDay - * @param source - * @param startTime - * @param endTime + * 濂栧姳鍒歌幏寰� + * @param coupon + * @param percent -鐧惧垎姣� */ - public void rewardCouponUsed(UserSystemCoupon coupon); + public void rewardCouponGet(UserSystemCoupon coupon,int percent); + + + /** + * 濂栧姳鍒镐娇鐢ㄦ垚鍔� + * @param coupon + * @param oldFanLiMoney-鍘熷杩斿埄閲戦 + * @param rewardMoney-濂栧姳閲戦 + */ + public void rewardCouponUsed(UserSystemCoupon coupon,BigDecimal oldFanLiMoney,BigDecimal rewardMoney,String orderId); /** * 濂栧姳鍒稿嵆灏嗚繃鏈� @@ -160,7 +163,7 @@ * @param startTime * @param endTime */ - public void rewardCouponWillOutOfDate(UserSystemCoupon coupon); + public void rewardCouponWillOutOfDate(UserSystemCoupon coupon,int percent); /** * 濂栧姳鍒稿凡缁忚繃鏈� @@ -171,4 +174,73 @@ */ public void rewardCouponAlreadyOutOfDate(UserSystemCoupon coupon); + + /** + * 娣樼ぜ閲戞秷鎭� + * @param uid + * @param beiZhu + * @param content + */ + public void taoLiJinMsg(Long uid, String beiZhu, MsgOtherTaoLiJinContentDTO content); + + + /** + * 鍙d护璧犻�侀鍙� + * @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); + } -- Gitblit v1.8.0