From 06b49617f43d36220649e81a7e4ac912356fd1b4 Mon Sep 17 00:00:00 2001 From: cjl <276999030@qq.com> Date: Wed, 23 Aug 2023 15:38:16 +0800 Subject: [PATCH] fix:监测站数据展示 --- screen-api/src/main/java/com/moral/api/service/ExcelService.java | 24 +++++++++++++++++++++--- 1 files changed, 21 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..a60eb28 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,31 @@ 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); + + //��������������� + public void rexcelImport(List<MultipartFile> files) throws IOException; + + + } -- Gitblit v1.8.0