辽宁功能调整
This commit is contained in:
@@ -20,7 +20,7 @@ public enum LineBaseEnum {
|
||||
PROVINCE_LEVEL(1, "省份"),
|
||||
GD_LEVEL(2, "供电公司"),
|
||||
SUB_LEVEL(3, "变电站"),
|
||||
DEVICE_LEVEL(4, "设备"),
|
||||
DEVICE_LEVEL(4, "终端"),
|
||||
SUB_V_LEVEL(5, "母线"),
|
||||
LINE_LEVEL(6, "监测点"),
|
||||
USER_LEVEL(7,"用户"),
|
||||
|
||||
@@ -0,0 +1,48 @@
|
||||
package com.njcn.device.pq.pojo.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Author: cdf
|
||||
* @CreateTime: 2025-04-25
|
||||
* @Description: 区分电网侧非电网侧信息台账信息
|
||||
*/
|
||||
@Data
|
||||
public class MonitorPowerDTO {
|
||||
|
||||
private List<MonitorBase> userMonitorList;
|
||||
|
||||
private List<MonitorBase> powerMonitorList;
|
||||
|
||||
|
||||
private List<MonitorBase> userStationList;
|
||||
|
||||
private List<MonitorBase> powerStationList;
|
||||
|
||||
@Data
|
||||
public static class MonitorBase{
|
||||
|
||||
private String id;
|
||||
|
||||
private String pid;
|
||||
|
||||
private String pids;
|
||||
|
||||
private String name;
|
||||
|
||||
private Integer sort;
|
||||
|
||||
private String objId;
|
||||
|
||||
private String bigObjType;
|
||||
|
||||
private String smallObjType;
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -24,6 +24,8 @@ public class OverLimitLineDTO {
|
||||
|
||||
private String lineObjectName;
|
||||
|
||||
private String objId;
|
||||
|
||||
private String monitorNumber;
|
||||
|
||||
private String subName;
|
||||
|
||||
Reference in New Issue
Block a user