From 30d8e227e8d823b6c38c3b9c90ac2df03b63befe Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期二, 25 二月 2025 16:41:22 +0800 Subject: [PATCH] 淘宝转链接口更新 --- fanli/src/main/java/com/yeshi/fanli/service/inter/homemodule/SpecialCardService.java | 94 +++++++++++++++++++++++++++------------------- 1 files changed, 55 insertions(+), 39 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/service/inter/homemodule/SpecialCardService.java b/fanli/src/main/java/com/yeshi/fanli/service/inter/homemodule/SpecialCardService.java index 5ca4e24..6484f51 100644 --- a/fanli/src/main/java/com/yeshi/fanli/service/inter/homemodule/SpecialCardService.java +++ b/fanli/src/main/java/com/yeshi/fanli/service/inter/homemodule/SpecialCardService.java @@ -1,39 +1,55 @@ -package com.yeshi.fanli.service.inter.homemodule; - -import java.util.List; - -import com.yeshi.fanli.entity.bus.homemodule.SpecialCard; - -/** - * 涓撻鏍囪瘑 - * - * @author Administrator - * - */ -public interface SpecialCardService { - - public int deleteByPrimaryKey(Long id); - - public int insert(SpecialCard record); - - public int insertSelective(SpecialCard record); - - public SpecialCard selectByPrimaryKey(Long id); - - public int updateByPrimaryKeySelective(SpecialCard record); - - public int updateByPrimaryKey(SpecialCard record); - - public List<SpecialCard> listQuery(long start, int count, String key, Integer sort); - - public long countlistQuery(String key); - - /** - * 鏍规嵁id鎵归噺鍒犻櫎 - * @param list - * @return - * @throws Exception - */ - public int deleteBatchByPrimaryKey(List<Long> list) throws Exception; - -} +package com.yeshi.fanli.service.inter.homemodule; + +import java.util.List; + +import com.yeshi.fanli.entity.SystemEnum; +import org.springframework.web.multipart.MultipartFile; + +import com.yeshi.fanli.entity.bus.homemodule.SpecialCard; +import com.yeshi.fanli.exception.homemodule.SpecialCardException; + +/** + * 涓撻鏍囪瘑 + * + * @author Administrator + * + */ +public interface SpecialCardService { + + public List<SpecialCard> listQuery(long start, int count, String key, Integer sort, List<Long> listPid, SystemEnum system); + + public long countlistQuery(String key, List<Long> listPid, SystemEnum system); + + /** + * 鏍规嵁id鎵归噺鍒犻櫎 + * @param list + * @return + * @throws Exception + */ + public int deleteBatchByPrimaryKey(List<Long> list) throws Exception; + + /** + * 鏂板銆佷慨鏀� + * @param file + * @param record + * @throws SpecialCardException + * @throws Exception + */ + public void saveObject(MultipartFile file, SpecialCard record) throws SpecialCardException, Exception; + + /** + * 鑾峰彇鑳屾櫙鍥剧墖 + * @param placeKey + * @return + */ + public String getbottomPicture(String placeKey, SystemEnum system); + + + /** + * 鐘舵�佸垏鎹� + * @param id + * @throws SpecialCardException + */ + public void switchState(Long id) throws SpecialCardException; + +} -- Gitblit v1.8.0