From e15c73ef6313c335d31173f2b14be3843e786156 Mon Sep 17 00:00:00 2001 From: whywhyo <1511349576@qq.com> Date: 星期二, 23 五月 2023 18:12:24 +0800 Subject: [PATCH] 456 --- zhang-content/src/main/java/com/ruoyi/service/ZfEventService.java | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/zhang-content/src/main/java/com/ruoyi/service/ZfEventService.java b/zhang-content/src/main/java/com/ruoyi/service/ZfEventService.java index d8b18f6..1a38063 100644 --- a/zhang-content/src/main/java/com/ruoyi/service/ZfEventService.java +++ b/zhang-content/src/main/java/com/ruoyi/service/ZfEventService.java @@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.extension.service.IService; import com.ruoyi.common.core.domain.AjaxResult; import com.ruoyi.domain.ZfEvent; +import org.springframework.web.multipart.MultipartFile; import java.util.List; @@ -17,7 +18,14 @@ */ public interface ZfEventService extends IService<ZfEvent> { - AjaxResult selectEventList(ZfEvent zfEvent, Integer pageNum, Integer pageSize); + AjaxResult selectDataList(ZfEvent zfEvent, Integer pageNum, Integer pageSize); List<ZfEvent> selectByCondition(ZfEvent zfEvent); + List<ZfEvent> selectByIds(Long[] ids); + + AjaxResult addData(ZfEvent zfEvent); + + AjaxResult addData2(ZfEvent zfEvent); + + AjaxResult importExcel(MultipartFile file); } -- Gitblit v1.9.1