From 88abda34da2c7437c8191da83972279d18ff9418 Mon Sep 17 00:00:00 2001
From: DELL <1525436766@qq.com>
Date: 星期五, 20 六月 2025 20:17:45 +0800
Subject: [PATCH] Merge branch 'master' of http://118.89.139.230:10101/r/powerIntelligenceSystem

---
 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