设备监控接口相关调整
This commit is contained in:
@@ -16,106 +16,107 @@ import java.time.LocalDateTime;
|
||||
@Data
|
||||
public class WlRecordTemplete extends BaseEntity {
|
||||
|
||||
/**
|
||||
* 工程名称
|
||||
*/
|
||||
@Excel(name = "*工程名称", width = 25.0D)
|
||||
private String gcName;
|
||||
|
||||
|
||||
/**
|
||||
* 测试项名称
|
||||
*/
|
||||
@Excel(name = "测试项名称", width = 15)
|
||||
@Excel(name = "测试项名称", width = 25.0D)
|
||||
private String itemName;
|
||||
|
||||
/**
|
||||
* 名称
|
||||
*/
|
||||
@Excel(name = "*名称", width = 15)
|
||||
@Excel(name = "*名称", width = 25.0D)
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* 装置网关识别码
|
||||
*/
|
||||
@Excel(name = "*装置网关识别码", width = 15)
|
||||
@Excel(name = "*装置网关识别码", width = 25.0D)
|
||||
private String ndid;
|
||||
|
||||
/**
|
||||
* 监测点id
|
||||
*/
|
||||
@Excel(name = "*监测点编号", width = 15)
|
||||
@Excel(name = "*监测点编号", width = 25.0D)
|
||||
private String lineId;
|
||||
|
||||
/**
|
||||
* 统计间隔
|
||||
*/
|
||||
@Excel(name = "*统计间隔", width = 15)
|
||||
@Excel(name = "*统计间隔", width = 25.0D)
|
||||
private String statisticalInterval;
|
||||
|
||||
/**
|
||||
* PT变比
|
||||
*/
|
||||
@Excel(name = "*PT变比", width = 15)
|
||||
@Excel(name = "*PT变比", width = 25.0D)
|
||||
private String pt;
|
||||
|
||||
/**
|
||||
* CT变比
|
||||
*/
|
||||
@Excel(name = "*CT变比", width = 15)
|
||||
@Excel(name = "*CT变比", width = 25.0D)
|
||||
private Integer ct;
|
||||
|
||||
/**
|
||||
* 电压等级
|
||||
*/
|
||||
@Excel(name = "*电压等级", width = 15)
|
||||
@Excel(name = "*电压等级", width = 25.0D)
|
||||
private String voltageLevel;
|
||||
|
||||
/**
|
||||
* 基准短路容量(MVA)
|
||||
*/
|
||||
@Excel(name = "*基准短路容量(MVA)", width = 15)
|
||||
@Excel(name = "*基准短路容量(MVA)", width = 25.0D)
|
||||
private String capacitySscb;
|
||||
|
||||
/**
|
||||
* 最小短路容量(MVA)
|
||||
*/
|
||||
@Excel(name = "*最小短路容量(MVA)", width = 15)
|
||||
@Excel(name = "*最小短路容量(MVA)", width = 25.0D)
|
||||
private String capacitySscmin;
|
||||
|
||||
/**
|
||||
* 供电设备容量(MVA)
|
||||
*/
|
||||
@Excel(name = "*供电设备容量(MVA)", width = 15)
|
||||
@Excel(name = "*供电设备容量(MVA)", width = 25.0D)
|
||||
private String capacitySt;
|
||||
|
||||
/**
|
||||
* 用户协议容量(MVA)
|
||||
*/
|
||||
@Excel(name = "*用户协议容量(MVA)", width = 15)
|
||||
@Excel(name = "*用户协议容量(MVA)", width = 25.0D)
|
||||
private String capacitySi;
|
||||
|
||||
/**
|
||||
* 电压接线方式(星型、角型、V型)
|
||||
* 接线方式
|
||||
*/
|
||||
@Excel(name = "*电压接线方式(星型、角型、V型)", width = 15)
|
||||
@Excel(name = "*接线方式", width = 25.0D)
|
||||
private String volConType;
|
||||
|
||||
/**
|
||||
* 电流接线方式(正常、合成IB、合成IC)
|
||||
*/
|
||||
@Excel(name = "*电流接线方式(正常、合成IB、合成IC)", width = 15)
|
||||
private String curConSel;
|
||||
|
||||
/**
|
||||
* 测试起始时间
|
||||
*/
|
||||
@Excel(name = "*测试起始时间", width = 15)
|
||||
@Excel(name = "*测试起始时间", width = 25.0D)
|
||||
private String startTime;
|
||||
|
||||
/**
|
||||
* 测试结束时间
|
||||
*/
|
||||
@Excel(name = "*测试结束时间", width = 15)
|
||||
@Excel(name = "*测试结束时间", width = 25.0D)
|
||||
private LocalDateTime endTime;
|
||||
|
||||
/**
|
||||
* 测试项监测位置
|
||||
*/
|
||||
@Excel(name = "测试项监测位置", width = 15)
|
||||
@Excel(name = "测试项监测位置", width = 25.0D)
|
||||
private String location;
|
||||
|
||||
}
|
||||
|
||||
@@ -2,8 +2,6 @@ package com.njcn.csdevice.pojo.po;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.njcn.db.bo.BaseEntity;
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@@ -49,25 +47,4 @@ public class PortableOfflLog extends BaseEntity {
|
||||
*/
|
||||
private Integer realCount;
|
||||
|
||||
/**
|
||||
* 创建用户
|
||||
*/
|
||||
private String createBy;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 更新用户
|
||||
*/
|
||||
private String updateBy;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
private LocalDateTime updateTime;
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user