admin
2019-07-11 3824cbcaec6e6c67418d5280a53e9c2fedeef6f9
fanli/src/main/java/com/yeshi/fanli/service/inter/push/BasePushService.java
@@ -1,5 +1,7 @@
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;
@@ -14,7 +16,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 +27,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,7 +37,7 @@
    * @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页面
@@ -46,7 +48,7 @@
    * @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及以后 推送百川网页
@@ -57,7 +59,7 @@
    * @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后)
@@ -67,5 +69,5 @@
    * @param content
    * @throws PushException
    */
   void pushWelfareCenter(Long uid, String title, String content) throws PushException;
   void pushWelfareCenter(Long uid, String title, String content, String versions) throws PushException;
}