admin
2020-05-20 98b1a0affd69bbe63223c21fdd2c404e8bedfccb
fanli/src/main/java/com/yeshi/fanli/service/inter/push/BasePushService.java
@@ -2,7 +2,7 @@
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 {
   /**
@@ -14,7 +14,7 @@
    * @param content
    * @throws PushException
    */
   void pushGoods(Long uid, Long auctionId, String title, String content) throws PushException;
   void pushGoods(Long uid, Long auctionId, String title, String content, String versions) throws PushException;
   /**
    * 推送链接
@@ -25,7 +25,7 @@
    * @param content
    * @throws PushException
    */
   void pushUrl(Long uid, String url, String title, String content) throws PushException;
   void pushUrl(Long uid, String url, String title, String content, String versions) throws PushException;
   /**
    * 推送站内信
@@ -35,28 +35,48 @@
    * @param content
    * @throws PushException
    */
   void pushZNX(Long uId, AccountMessage msg,SystemZnx systemZNX) throws PushException;
   void pushZNX(Long uId, AccountMessage msg, SystemZnx systemZNX, String versions) throws PushException;
   /**
    * 适用版本 1.4.8及以后
    * 推送weex页面
    * 适用版本 1.4.8及以后 推送weex页面
    *
    * @param uid
    * @param title
    * @param content
    * @param weexUrl
    * @throws PushException
    */
   void pushWEEX(Long uid, String title, String content, String weexUrl) throws PushException;
   void pushWEEX(Long uid, String title, String content, String weexUrl, String versions) throws PushException;
   /**
    * 适用版本 1.4.8及以后
    * 推送百川网页
    * 适用版本 1.4.8及以后 推送百川网页
    *
    * @param uid
    * @param title
    * @param content
    * @param url
    * @throws PushException
    */
   void pushBaiChuanUrl(Long uid, String title, String content, String url) throws PushException;
   void pushBaiChuanUrl(Long uid, String title, String content, String url, String versions) throws PushException;
   /**
    * 推送福利中心(版本号:1.5.1后)
    *
    * @param uid
    * @param title
    * @param content
    * @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;
}