监测点、终端的状态修改
This commit is contained in:
@@ -20,7 +20,7 @@ public class Tree implements Serializable {
|
||||
private int nodeIndex;
|
||||
private String nodeIndexStr;
|
||||
private int ppId; // 真实的PID值,对照数据库
|
||||
private int state; // 终端运行状态 0-正常 1-检修 2-停运
|
||||
private int state; // 终端运行状态 0-正常 1-检修 2-退运
|
||||
private int gd_index;
|
||||
private int status; //终端通讯状态 0-正常 1-中断
|
||||
private int qualityAss;//综合质量评估
|
||||
|
||||
@@ -81,7 +81,7 @@ public class Line {
|
||||
@Column(name="SUBV_NAME")
|
||||
private String subvName;
|
||||
|
||||
//监测点状态(0:投运;1:停运)
|
||||
//监测点状态(0:投运;1:退运)
|
||||
@Column(name="STATUS")
|
||||
private Integer status;
|
||||
|
||||
|
||||
@@ -47,7 +47,7 @@ public class LineMaps {
|
||||
@Column(name="SUBV_NAME")
|
||||
private String subvname;
|
||||
|
||||
//终端状态(0:正常;1:中断;2:停运)
|
||||
//终端状态(0:正常;1:中断;2:退运)
|
||||
@Column(name="DEVFLAG")
|
||||
private Integer devflag;
|
||||
|
||||
|
||||
@@ -20,10 +20,10 @@ public class AreaRuntimeExcelBody extends BaseRowModel implements Serializable {
|
||||
@ExcelProperty(value = "投运" ,index = 2)
|
||||
private String normal;
|
||||
|
||||
@ExcelProperty(value = "热备用" ,index = 3)
|
||||
@ExcelProperty(value = "检修" ,index = 3)
|
||||
private String breaks;
|
||||
|
||||
@ExcelProperty(value = "停运" ,index = 4)
|
||||
@ExcelProperty(value = "退运" ,index = 4)
|
||||
private String shutdown;
|
||||
|
||||
@ExcelProperty(value = "在线率" ,index = 5)
|
||||
|
||||
@@ -20,10 +20,10 @@ public class CompanyRuntimeExcelBody extends BaseRowModel implements Serializabl
|
||||
@ExcelProperty(value = "投运" ,index = 2)
|
||||
private String normal;
|
||||
|
||||
@ExcelProperty(value = "热备用" ,index = 3)
|
||||
@ExcelProperty(value = "检修" ,index = 3)
|
||||
private String breaks;
|
||||
|
||||
@ExcelProperty(value = "停运" ,index = 4)
|
||||
@ExcelProperty(value = "退运" ,index = 4)
|
||||
private String shutdown;
|
||||
|
||||
@ExcelProperty(value = "在线率" ,index = 5)
|
||||
|
||||
Reference in New Issue
Block a user