yujian
2019-08-27 d8359ddb48dab5cc797a9d552e11fde571f4920c
fanli/src/main/java/com/yeshi/fanli/service/inter/push/PushGoodsService.java
@@ -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;
   
}