From e54bc01ed3a571abc9de4dd4c32893e8741bb0f0 Mon Sep 17 00:00:00 2001 From: jpy <812110275@qq.com> Date: Sat, 27 May 2023 15:13:28 +0800 Subject: [PATCH] test --- screen-api/src/main/java/com/moral/api/service/ExcelService.java | 21 ++++++++++++++++++--- 1 files changed, 18 insertions(+), 3 deletions(-) diff --git a/screen-api/src/main/java/com/moral/api/service/ExcelService.java b/screen-api/src/main/java/com/moral/api/service/ExcelService.java index 0b1e330..5cbdc40 100644 --- a/screen-api/src/main/java/com/moral/api/service/ExcelService.java +++ b/screen-api/src/main/java/com/moral/api/service/ExcelService.java @@ -4,6 +4,7 @@ import org.springframework.web.multipart.MultipartFile; import java.io.IOException; +import java.text.ParseException; import java.util.List; import java.util.Map; @@ -12,14 +13,28 @@ import com.moral.api.pojo.vo.excel.ExcelVo; -public interface ExcelService { +public interface ExcelService { + /** + * ��������������� + * @param files + * @param params + * @return + * @throws IOException + */ public ExcelBO importTemplate(List<MultipartFile> files, Map<String, Object> params) throws IOException; - + /** + * ��������������� + * @param id + * @return + */ public ExcelVo export(Integer id); - + //������ public List<ExcelBO> excelSelect(String startTime,String code,String endTime); + + + } -- Gitblit v1.8.0