1.概览-区域暂降评估-区域暂降评估->添加等级范围值

2.区域-终端状态统计->增加国网统计
3.台账管理-台账模板->导入信息增加(导入台账的模板:)加终端字段:监测装置安装位置、监测厂家设备编号、SIM卡号;监测点字段:行业类型、监测点性质,电网侧变电站、是否并网点、监测点运行状态。
4.运行管理-监测点台账信息->增加变电站名称+母线+监测点名称
This commit is contained in:
wr
2024-04-02 14:31:00 +08:00
parent fefd704e6e
commit 542cdbc9b3
20 changed files with 346 additions and 55 deletions

View File

@@ -198,7 +198,7 @@ public class DeviceController {
@RequestMapping(value = "getDeviceDetail", method = RequestMethod.POST)
@ResponseBody
public String getDeviceDetail(HttpServletRequest request, HttpSession session, String status, String devflag, String gdName, String
manufacturer, String lineIndex, String area)
manufacturer, String lineIndex, String area, String type)
throws
JsonProcessingException, AccountException {
if (session.getAttribute("line_index") != null || session.getAttribute("line_index") != "") {
@@ -226,7 +226,7 @@ public class DeviceController {
}
manufacturer = "%" + manufacturer + "%";
if (lineIndex == null || lineIndex.length() == 0) {
result = deviceService.getDeviceDetails(status, devflag, gdName, manufacturer, area);
result = deviceService.getDeviceDetails(status, devflag, gdName, manufacturer, area,type);
} else {
result = deviceService.queryDeviceDetailById(lineIndex);
}

View File

@@ -457,19 +457,19 @@
type: 'piecewise',
pieces: [{
gt: 1.2,
label: '4级'
label: '4级(1.2,+∞]'
}, {
gt: 0.8,
lte: 1.2,
label: '3级'
label: '3级(0.8,1.2]'
}, {
gt: 0.4,
lte: 0.8,
label: '2级'
label: '2级(0.4,0.8]'
}, {
gt: -1,
lte: 0.4,
label: '1级'
label: '1级[0,0.4]'
}],
color: [red, yellow, green],
inverse: true