admin
2020-07-14 eec7e789a87863c25d92c10ad5dfc22ad80c448d
fanli/src/main/java/com/yeshi/fanli/service/inter/help/AppPageNotificationService.java
@@ -2,6 +2,7 @@
import java.util.List;
import com.yeshi.fanli.entity.SystemEnum;
import com.yeshi.fanli.entity.bus.help.AppPageNotification;
/**
@@ -18,15 +19,8 @@
    * @param type
    * @return
    */
   public AppPageNotification getAppPageNotificationByType(String type);
   public AppPageNotification getAppPageNotificationByType(String type, SystemEnum system);
   /**
    * 通过类型获取具体的通知
    *
    * @param type
    * @return
    */
   public AppPageNotification getAppPageNotificationByTypeCache(String type);
   /**
    * 添加
@@ -65,8 +59,16 @@
    * 后端列表查询
    * @return
    */
   public List<AppPageNotification> listQuery(long start, int count,String key, Integer show, Integer canClose);
   public List<AppPageNotification> listQuery(long start, int count,String key, Integer show, Integer canClose, SystemEnum system);
   
   public long countQuery(String key, Integer show, Integer canClose);
   public long countQuery(String key, Integer show, Integer canClose, SystemEnum system);
   public AppPageNotification getValidNotificationByTypeCache(String type, String platform, Integer versionCode, SystemEnum system);
   public void updateByPrimaryKey(AppPageNotification record);
   public void setVersions(Long id, List<Long> versions) throws Exception;
}