yujian
2019-09-10 65460a2dc7c69d8c0e031ec4c89e25d47e5173f2
fanli/src/main/java/com/yeshi/fanli/service/inter/homemodule/SpecialService.java
@@ -4,6 +4,7 @@
import org.springframework.web.multipart.MultipartFile;
import com.yeshi.fanli.entity.accept.AcceptData;
import com.yeshi.fanli.entity.bus.homemodule.Special;
import com.yeshi.fanli.exception.homemodule.SpecialException;
@@ -21,9 +22,9 @@
   public Special selectByPrimaryKey(Long id);
   public List<Special> listQueryByCard(long start, int count, Long card, String key);
   public List<Special> listQueryByCard(long start, int count, Long card, String key, Integer sex);
   public long countlistQueryByCard(Long card, String key);
   public long countlistQueryByCard(Long card, String key, Integer sex);
   /**
@@ -77,7 +78,7 @@
    * @param moveType
    * @throws SpecialException
    */
   public void updateOrder(Long id, Integer moveType) throws SpecialException;
   public void updateOrder(Long id, Integer moveType, Integer sex) throws SpecialException;
   /**
@@ -85,6 +86,27 @@
    * @return
    * @throws Exception
    */
   public JSONObject listCacheSpecialToIndex() throws Exception;
   public JSONObject listCacheSpecialToIndex(AcceptData acceptData, Integer sex) throws Exception;
   /**
    * 根据专题位置查询
    * @param placeKey
    * @return
    */
   public List<Special> listByPlaceKey(String placeKey, Integer platform, Integer versionCode);
   /**
    * 专题 版本区分
    * @param start
    * @param count
    * @param card
    * @param systemId
    * @param platform
    * @param versionCode
    * @return
    */
   public List<Special> listByVersion(long start, int count, String card, Integer platform, Integer versionCode);
}