| | |
| | | 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; |
| | |
| | | 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); |
| | | } |
| | | } |