admin
2020-07-29 c338aa60df58bee9f4c25afedf94fe6930a119c1
fanli/src/main/java/com/yeshi/fanli/service/inter/push/HWPushService.java
@@ -1,6 +1,7 @@
package com.yeshi.fanli.service.inter.push;
import com.yeshi.fanli.dto.push.PushBaseContent;
import com.yeshi.fanli.dto.push.PushContentDetailDTO;
import com.yeshi.fanli.exception.push.PushException;
import java.util.List;
@@ -9,7 +10,6 @@
 * 华为推送服务
 * 
 * @author Administrator
 *
 */
public interface HWPushService {
@@ -64,7 +64,6 @@
    * 推送福利中心(版本号:1.5.1后)
    * 
    * @param uid
    * @throws PushException
    */
   void pushWelfareCenter(Long uid,PushBaseContent baseContent) throws PushException;
@@ -73,9 +72,17 @@
    * 推送签到提醒
    * 
    * @param uid
    * @throws PushException
    */
   void pushUserSignInNotification(Long uid, PushBaseContent baseContent) throws PushException;
    /**
     * 推送
     *
     * @param dto
     * @throws PushException
     */
    void push(PushContentDetailDTO dto) throws PushException;
}