From c80da13f02f943436ce00e55ccbc719b2c31eb41 Mon Sep 17 00:00:00 2001 From: whyclxw <810412026@qq.com> Date: 星期四, 26 六月 2025 21:14:52 +0800 Subject: [PATCH] 实时数据曲线统计-交流单元导出示例 --- src/main/java/com/whyc/controller/ExportFileController.java | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/whyc/controller/ExportFileController.java b/src/main/java/com/whyc/controller/ExportFileController.java index d0afccf..cd709eb 100644 --- a/src/main/java/com/whyc/controller/ExportFileController.java +++ b/src/main/java/com/whyc/controller/ExportFileController.java @@ -1,6 +1,7 @@ package com.whyc.controller; import com.whyc.dto.Real.ExportTinfDataDto; +import com.whyc.dto.RealDataStatic.ResRealExportAc; import com.whyc.dto.Statistic.BattCompareStic; import com.whyc.dto.Statistic.MonStic; import com.whyc.service.ExportService; @@ -38,4 +39,10 @@ public void exportBattCompare(HttpServletRequest req, HttpServletResponse resp ,@RequestBody BattCompareStic stic) throws ParseException, IOException { service.exportBattCompare(req,resp,stic); } + + @PostMapping("exportRealStaticAc") + @ApiOperation(value = "瀹炴椂鏁版嵁缁熻鏇茬嚎-浜ゆ祦鍗曞厓瀵煎嚭(2.2.1)") + public void exportRealStaticAc(HttpServletRequest req, HttpServletResponse resp ,@RequestBody ResRealExportAc exportAc) throws ParseException, IOException { + service.exportRealStaticAc(req,resp,exportAc); + } } \ No newline at end of file -- Gitblit v1.9.1