From 2753ad7aee272a5a5a8a0124b1feea5a1e4cc83e Mon Sep 17 00:00:00 2001 From: whyclxw <810412026@qq.com> Date: 星期五, 20 六月 2025 22:40:52 +0800 Subject: [PATCH] 电源告警参数返回 --- src/main/java/com/whyc/controller/ExportFileController.java | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/whyc/controller/ExportFileController.java b/src/main/java/com/whyc/controller/ExportFileController.java index 00e6f84..9decf30 100644 --- a/src/main/java/com/whyc/controller/ExportFileController.java +++ b/src/main/java/com/whyc/controller/ExportFileController.java @@ -1,5 +1,6 @@ package com.whyc.controller; +import com.whyc.dto.Real.ExportTinfDataDto; import com.whyc.dto.Statistic.MonStic; import com.whyc.service.ExportService; import io.swagger.annotations.Api; @@ -9,6 +10,7 @@ import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; +import java.io.IOException; import java.text.ParseException; @RestController @@ -23,4 +25,10 @@ public void exportBattTinfStatistic(HttpServletRequest req, HttpServletResponse resp ,@RequestBody MonStic stic) throws ParseException { service.exportBattTinfStatistic(req,resp,stic); } + + @PostMapping("exportTinfDataByTestRecordCount") + @ApiOperation(value = "鍘嗗彶娴嬭瘯鏁版嵁瀵煎嚭") + public void exportTinfDataByTestRecordCount(HttpServletRequest req, HttpServletResponse resp ,@RequestBody ExportTinfDataDto dto) throws ParseException, IOException { + service.exportTinfDataByTestRecordCount(req,resp,dto); + } } \ No newline at end of file -- Gitblit v1.9.1