From 24a8d17e007545f7426c48352109aa1a9c6587ee Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期三, 06 五月 2020 12:02:09 +0800 Subject: [PATCH] IOS上线隐藏我的界面的banner与超级会员升级信息 --- fanli/src/main/java/com/yeshi/fanli/service/inter/push/PushGoodsService.java | 27 ++++++++++++++++++++++++--- 1 files changed, 24 insertions(+), 3 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/service/inter/push/PushGoodsService.java b/fanli/src/main/java/com/yeshi/fanli/service/inter/push/PushGoodsService.java index 69ffc09..15d2b62 100644 --- a/fanli/src/main/java/com/yeshi/fanli/service/inter/push/PushGoodsService.java +++ b/fanli/src/main/java/com/yeshi/fanli/service/inter/push/PushGoodsService.java @@ -4,7 +4,7 @@ import java.util.List; import com.yeshi.fanli.entity.push.PushGoods; -import com.yeshi.fanli.exception.PushException; +import com.yeshi.fanli.exception.push.PushException; import com.yeshi.fanli.exception.push.PushGoodsException; public interface PushGoodsService { @@ -21,7 +21,7 @@ public int updateByPrimaryKey(PushGoods record) throws PushGoodsException; - public void save(PushGoods record, List<Long> goodsId) throws Exception; + public void save(PushGoods record, List<Long> goodsId) throws PushGoodsException,Exception; /** * 鎵归噺鍒犻櫎 @@ -61,6 +61,27 @@ * @throws PushGoodsException * @throws PushException */ - public void executePush(Long id) throws Exception, PushGoodsException, PushException; + public void executePush(PushGoods record) throws Exception, PushGoodsException, PushException; + + /** + * 瀹氭椂鎺ㄩ�佷换鍔� + * @return + */ + public List<PushGoods> listTask(); + + /** + * 瀹氭椂鎺ㄩ�佸鐞� + * @param record + */ + public void taskPush(PushGoods record); + + /** + * 鍚庣鎺ㄩ�� + * @param id + * @throws Exception + * @throws PushGoodsException + * @throws PushException + */ + public void handPush(Long id) throws Exception, PushGoodsException, PushException; } -- Gitblit v1.8.0