yujian
2020-04-02 0ec22dcf4fd9c4496e6f681e7fab89f56c6e4e8a
fanli/src/main/java/com/yeshi/fanli/service/inter/msg/UserOtherMsgNotificationService.java
@@ -1,6 +1,7 @@
package com.yeshi.fanli.service.inter.msg;
import java.math.BigDecimal;
import java.util.List;
import com.yeshi.fanli.dto.msg.MsgOtherCouponActivateDTO;
import com.yeshi.fanli.dto.msg.MsgOtherExchangeContentDTO;
@@ -8,9 +9,11 @@
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.dto.msg.MsgOtherVIPDTO;
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;
import com.yeshi.fanli.vo.msg.CommonMsgItemVO;
/**
 * 用户订单消息通知
@@ -268,4 +271,45 @@
    */
   public void taoLiJinExchangeMsg(Long uid, String beiZhu, MsgOtherRewardIntegralDTO msgOther);
   /**
    * 会员申请通过消息
    * @param uid
    * @param beiZhu
    * @param dto
    */
   public void passVIPApplyMsg(Long uid, String beiZhu, MsgOtherVIPDTO dto);
   /**
    * 会员升级未通过
    * @param uid
    * @param beiZhu
    * @param dto
    */
   public void rejectVIPApply(Long uid, String beiZhu, MsgOtherVIPDTO dto);
   /**
    * 温馨提醒
    * @param uid
    * @param beiZhu
    * @param dto
    */
   public void teamVIPCallBoss(Long uid, String beiZhu, MsgOtherVIPDTO dto);
   /**
    * 邀请脱离
    * @param uid
    * @param beiZhu
    * @param dto
    */
   public void teamSplitCallBoss(Long uid, String beiZhu, MsgOtherVIPDTO dto);
   /**
    * 创建消息明细
    * @param uid
    * @param type
    * @param listMsg
    */
   public void createMsgOtherDetail(Long uid, List<CommonMsgItemVO> listMsg, MsgTypeOtherTypeEnum type);
}