admin
2020-02-23 b59fef5c00b15fdfdfa9d4be26e5bf6b41c75458
fanli/src/main/java/com/yeshi/fanli/service/inter/push/BasePushService.java
@@ -1,10 +1,8 @@
package com.yeshi.fanli.service.inter.push;
import java.util.List;
import com.yeshi.fanli.entity.bus.user.AccountMessage;
import com.yeshi.fanli.entity.system.SystemZnx;
import com.yeshi.fanli.exception.PushException;
import com.yeshi.fanli.exception.push.PushException;
public interface BasePushService {
   /**
@@ -16,7 +14,7 @@
    * @param content
    * @throws PushException
    */
   void pushGoods(Long uid, Long auctionId, String title, String content, List<String> listVersion) throws PushException;
   void pushGoods(Long uid, Long auctionId, String title, String content, String versions) throws PushException;
   /**
    * 推送链接
@@ -27,7 +25,7 @@
    * @param content
    * @throws PushException
    */
   void pushUrl(Long uid, String url, String title, String content, List<String> listVersion) throws PushException;
   void pushUrl(Long uid, String url, String title, String content, String versions) throws PushException;
   /**
    * 推送站内信
@@ -37,7 +35,7 @@
    * @param content
    * @throws PushException
    */
   void pushZNX(Long uId, AccountMessage msg, SystemZnx systemZNX, List<String> listVersion) throws PushException;
   void pushZNX(Long uId, AccountMessage msg, SystemZnx systemZNX, String versions) throws PushException;
   /**
    * 适用版本 1.4.8及以后 推送weex页面
@@ -48,7 +46,7 @@
    * @param weexUrl
    * @throws PushException
    */
   void pushWEEX(Long uid, String title, String content, String weexUrl, List<String> listVersion) throws PushException;
   void pushWEEX(Long uid, String title, String content, String weexUrl, String versions) throws PushException;
   /**
    * 适用版本 1.4.8及以后 推送百川网页
@@ -59,7 +57,7 @@
    * @param url
    * @throws PushException
    */
   void pushBaiChuanUrl(Long uid, String title, String content, String url, List<String> listVersion) throws PushException;
   void pushBaiChuanUrl(Long uid, String title, String content, String url, String versions) throws PushException;
   /**
    * 推送福利中心(版本号:1.5.1后)
@@ -69,5 +67,16 @@
    * @param content
    * @throws PushException
    */
   void pushWelfareCenter(Long uid, String title, String content, List<String> listVersion) throws PushException;
   void pushWelfareCenter(Long uid, String title, String content, String versions) throws PushException;
   /**
    * 推送用户签到
    *
    * @param uid
    * @param title
    * @param content
    * @param versions
    * @throws PushException
    */
   void pushUserSignInNotification(Long uid, String title, String content, String versions) throws PushException;
}