From 2ec42a5aacea35d2918f0e17f07685cf5b4d25c8 Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期二, 12 五月 2020 20:20:41 +0800 Subject: [PATCH] 包名引用路径更改 --- fanli/src/main/java/com/yeshi/fanli/service/inter/homemodule/SpecialCardService.java | 41 +++++++++++++++++++++++++++++++++++------ 1 files changed, 35 insertions(+), 6 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 ac82acb..1ef647c 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,6 +1,11 @@ package com.yeshi.fanli.service.inter.homemodule; +import java.util.List; + +import org.springframework.web.multipart.MultipartFile; + import com.yeshi.fanli.entity.bus.homemodule.SpecialCard; +import com.yeshi.fanli.exception.homemodule.SpecialCardException; /** * 涓撻鏍囪瘑 @@ -10,16 +15,40 @@ */ public interface SpecialCardService { - public int deleteByPrimaryKey(Long id); + public List<SpecialCard> listQuery(long start, int count, String key, Integer sort); - public int insert(SpecialCard record); + public long countlistQuery(String key); - public int insertSelective(SpecialCard record); + /** + * 鏍规嵁id鎵归噺鍒犻櫎 + * @param list + * @return + * @throws Exception + */ + public int deleteBatchByPrimaryKey(List<Long> list) throws Exception; - public SpecialCard selectByPrimaryKey(Long id); + /** + * 鏂板銆佷慨鏀� + * @param file + * @param record + * @throws SpecialCardException + * @throws Exception + */ + public void saveObject(MultipartFile file, SpecialCard record) throws SpecialCardException, Exception; - public int updateByPrimaryKeySelective(SpecialCard record); + /** + * 鑾峰彇鑳屾櫙鍥剧墖 + * @param placeKey + * @return + */ + public String getbottomPicture(String placeKey); - public int updateByPrimaryKey(SpecialCard record); + + /** + * 鐘舵�佸垏鎹� + * @param id + * @throws SpecialCardException + */ + public void switchState(Long id) throws SpecialCardException; } -- Gitblit v1.8.0