统计报表-电池堆曲线

This commit is contained in:
2025-07-08 14:46:42 +08:00
parent 7d1f1836d8
commit 13266bdbd5
7 changed files with 314 additions and 4 deletions

View File

@ -60,4 +60,19 @@ public class EmsStatisticalReportController extends BaseController
}
}
/**
* 概率统计-电池堆曲线
*/
@GetMapping("/getStackData")
public AjaxResult getStackData(DateSearchRequest requestVo)
{
if (!StringUtils.isEmpty(requestVo.getSiteId()) &&
!StringUtils.isEmpty(requestVo.getDeviceId()) &&
requestVo.getDataType() != 0) {
return success(ieEmsStatsReportService.getStackDataResult(requestVo));
} else {
return error("缺少必传项");
}
}
}