admin
2020-05-06 24a8d17e007545f7426c48352109aa1a9c6587ee
fanli/src/main/java/com/yeshi/fanli/service/inter/homemodule/SpecialService.java
@@ -107,7 +107,7 @@
    * @param versionCode
    * @return
    */
   public List<Special> listByVersion(long start, int count, String card, Integer platform, Integer versionCode);
   public List<Special> listByVersion(long start, int count, String card, String platform, Integer versionCode);
   /**
@@ -122,4 +122,31 @@
   public long countByPlaceKeyList(List<String> list, Integer platform, Integer versionCode);
   /**
    * 查询专题并返回标签
    * @param list
    * @param platform
    * @param versionCode
    * @return
    */
   public List<Special> listByPlaceKeyHasLabel(long start, int count, List<String> list, Integer platform, Integer versionCode);
   /**
    * 为专题设置版本
    * @param specialId
    * @param versions
    * @throws Exception
    */
   public void setVersions(Long specialId,List<Long> versions)  throws Exception;
   /**
    * 更改状态
    * @param id
    * @throws SpecialException
    */
   public void switchState(Long id) throws SpecialException;
}