From f4a0f2acc63d7785eab108419a4e16f5f688cb95 Mon Sep 17 00:00:00 2001 From: yujian <yujian@163.com> Date: 星期六, 18 一月 2020 12:06:27 +0800 Subject: [PATCH] 用户注册信息 --- fanli/src/main/java/com/yeshi/fanli/service/inter/homemodule/SpecialService.java | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++----- 1 files changed, 52 insertions(+), 5 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/service/inter/homemodule/SpecialService.java b/fanli/src/main/java/com/yeshi/fanli/service/inter/homemodule/SpecialService.java index b046e29..19a4a01 100644 --- a/fanli/src/main/java/com/yeshi/fanli/service/inter/homemodule/SpecialService.java +++ b/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,7 +86,7 @@ * @return * @throws Exception */ - public JSONObject listCacheSpecialToIndex() throws Exception; + public JSONObject listCacheSpecialToIndex(AcceptData acceptData, Integer sex) throws Exception; /** @@ -93,6 +94,52 @@ * @param placeKey * @return */ - public List<Special> listByPlaceKey(String placeKey); + 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, String platform, Integer versionCode); + + + /** + * 涓撻鐗堟湰鍖哄垎 浼犻�掑涓綅缃� + * @param list + * @param platform + * @param versionCode + * @return + */ + public List<Special> listByPlaceKeyList(long start, int count, List<String> list, Integer platform, Integer versionCode); + + + 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; + } -- Gitblit v1.8.0