PCS抽数逻辑

This commit is contained in:
2025-06-24 17:04:59 +08:00
parent 7134bc03f8
commit 7b64e193fc
11 changed files with 801 additions and 12 deletions

View File

@ -71,4 +71,22 @@ public class EmsSiteMonitorController extends BaseController{
{
return success(iSingleSiteService.getBMSBatteryCluster(siteId));
}
/**
* 获取所有电池堆
*/
@GetMapping("/getStackNameList")
public AjaxResult getStackNameList(@RequestParam Long siteId)
{
return success(iSingleSiteService.getBMSBatteryCluster(siteId));
}
/**
* 获取所有电池簇
*/
@GetMapping("/getClusterNameList")
public AjaxResult getClusterNameList(@RequestParam Long siteId)
{
return success(iSingleSiteService.getBMSBatteryCluster(siteId));
}
}