yujian
2019-01-14 92c681fabac989d1a9f16fa13202d7f5ccac52d9
fanli/src/main/java/com/yeshi/fanli/service/inter/push/BasePushService.java
@@ -28,17 +28,6 @@
   void pushUrl(Long uid, String url, String title, String content) throws PushException;
   /**
    * 推送WEEX的页面(暂时不做)
    *
    * @param uid
    * @param weexUrl
    * @param title
    * @param content
    * @throws PushException
    */
   void pushWEEXUrl(Long uid, String weexUrl, String title, String content) throws PushException;
   /**
    * 推送站内信
    * 
    * @param uId
@@ -47,4 +36,27 @@
    * @throws PushException
    */
   void pushZNX(Long uId, AccountMessage msg,SystemZnx systemZNX) throws PushException;
   /**
    * 适用版本 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;
   /**
    * 适用版本 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;
}