admin
2020-07-14 eec7e789a87863c25d92c10ad5dfc22ad80c448d
fanli/src/main/java/com/yeshi/fanli/service/inter/homemodule/FloatADService.java
@@ -2,6 +2,7 @@
import java.util.List;
import com.yeshi.fanli.entity.SystemEnum;
import org.apache.ibatis.annotations.Param;
import org.springframework.web.multipart.MultipartFile;
@@ -48,15 +49,15 @@
    * @return
    */
   public List<FloatAD> listQuery(@Param("start") long start, @Param("count") int count, @Param("key") String key,
         @Param("state") Integer state) throws FloatADException;
         @Param("state") Integer state,SystemEnum system) throws FloatADException;
   public long countQuery(@Param("key") String key, @Param("state") Integer state);
   public long countQuery(@Param("key") String key, @Param("state") Integer state,SystemEnum system);
   /**
    * 查询有效的悬浮大图
    * @return
    */
   public FloatAD getEffectiveFloatAD(String position, Integer type);
   public FloatAD getEffectiveFloatAD(String position, Integer type,SystemEnum system);
   /**
@@ -73,7 +74,7 @@
    * @param type
    * @return
    */
   public List<FloatAD> getValidFloatADCache(String position, Integer type, String platform, Integer versionCode);
   public List<FloatAD> getValidFloatADCache(String position, Integer type, String platform, Integer versionCode, SystemEnum system);
   
   /**