|
|
|
@ -24,67 +24,271 @@ public class RealTimeDataBo extends BaseEntity {
|
|
|
|
|
*/
|
|
|
|
|
private Long objId;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 父级ID
|
|
|
|
|
*/
|
|
|
|
|
private Long parentId;
|
|
|
|
|
|
|
|
|
|
/** 计量设备类型 */
|
|
|
|
|
private Long monitorType;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 计量设备编号
|
|
|
|
|
*/
|
|
|
|
|
@Excel(name = "计量设备编号")
|
|
|
|
|
private String monitorCode;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 计量设备名称
|
|
|
|
|
*/
|
|
|
|
|
@Excel(name = "计量设备名称")
|
|
|
|
|
private String monitorName;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 仪表值
|
|
|
|
|
*/
|
|
|
|
|
@Excel(name = "仪表值")
|
|
|
|
|
private BigDecimal instrumentValue;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 耗量
|
|
|
|
|
*/
|
|
|
|
|
@Excel(name = "耗量")
|
|
|
|
|
private BigDecimal expend;
|
|
|
|
|
/** 采集时间 */
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
private Date collectTime;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 记录时间
|
|
|
|
|
*/
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
@Excel(name = "记录时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
private Date recordTime;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 开始时间
|
|
|
|
|
*/
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
@Excel(name = "开始时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
private Date beginTime;
|
|
|
|
|
/** A相电压 */
|
|
|
|
|
private BigDecimal vA;
|
|
|
|
|
|
|
|
|
|
/** B相电压 */
|
|
|
|
|
private BigDecimal vB;
|
|
|
|
|
|
|
|
|
|
/** C相电压 */
|
|
|
|
|
private BigDecimal vC;
|
|
|
|
|
|
|
|
|
|
/** A相电流 */
|
|
|
|
|
private BigDecimal iA;
|
|
|
|
|
|
|
|
|
|
/** B相电流 */
|
|
|
|
|
private BigDecimal iB;
|
|
|
|
|
|
|
|
|
|
/** C相电流 */
|
|
|
|
|
private BigDecimal iC;
|
|
|
|
|
|
|
|
|
|
/** 功率因数 */
|
|
|
|
|
private BigDecimal glys;
|
|
|
|
|
|
|
|
|
|
/** 正向有功 */
|
|
|
|
|
private BigDecimal zxyg;
|
|
|
|
|
|
|
|
|
|
/** 反向有功 */
|
|
|
|
|
private BigDecimal fxyg;
|
|
|
|
|
|
|
|
|
|
/** 瞬时流量 */
|
|
|
|
|
private BigDecimal fluxFlow;
|
|
|
|
|
|
|
|
|
|
/** 累计流量 */
|
|
|
|
|
private BigDecimal waterFlow;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 结束时间
|
|
|
|
|
* 累计流量
|
|
|
|
|
*/
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
@Excel(name = "结束时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
private Date endTime;
|
|
|
|
|
private BigDecimal steamFlow;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 修改标识(0是 1否)
|
|
|
|
|
* 温度
|
|
|
|
|
*/
|
|
|
|
|
@Excel(name = "修改标识", readConverterExp = "0=是,1=否")
|
|
|
|
|
private String updateFlag;
|
|
|
|
|
private BigDecimal temperature;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 发电量
|
|
|
|
|
* 压力
|
|
|
|
|
*/
|
|
|
|
|
@Excel(name = "发电量")
|
|
|
|
|
private BigDecimal powerExpend;
|
|
|
|
|
private BigDecimal press;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 反向有功仪表值
|
|
|
|
|
* 密度
|
|
|
|
|
*/
|
|
|
|
|
@Excel(name = "反向有功仪表值")
|
|
|
|
|
private BigDecimal powerValue;
|
|
|
|
|
private BigDecimal density;
|
|
|
|
|
|
|
|
|
|
/** 纯度 */
|
|
|
|
|
private BigDecimal purity;
|
|
|
|
|
|
|
|
|
|
public BigDecimal getPurity() {
|
|
|
|
|
return purity;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setPurity(BigDecimal purity) {
|
|
|
|
|
this.purity = purity;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getSteamFlow() {
|
|
|
|
|
return steamFlow;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setSteamFlow(BigDecimal steamFlow) {
|
|
|
|
|
this.steamFlow = steamFlow;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getTemperature() {
|
|
|
|
|
return temperature;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setTemperature(BigDecimal temperature) {
|
|
|
|
|
this.temperature = temperature;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getPress() {
|
|
|
|
|
return press;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setPress(BigDecimal press) {
|
|
|
|
|
this.press = press;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getDensity() {
|
|
|
|
|
return density;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setDensity(BigDecimal density) {
|
|
|
|
|
this.density = density;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getFluxFlow() {
|
|
|
|
|
return fluxFlow;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setFluxFlow(BigDecimal fluxFlow) {
|
|
|
|
|
this.fluxFlow = fluxFlow;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getWaterFlow() {
|
|
|
|
|
return waterFlow;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setWaterFlow(BigDecimal waterFlow) {
|
|
|
|
|
this.waterFlow = waterFlow;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getMonitorType() {
|
|
|
|
|
return monitorType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setMonitorType(Long monitorType) {
|
|
|
|
|
this.monitorType = monitorType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getObjId() {
|
|
|
|
|
return objId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setObjId(Long objId) {
|
|
|
|
|
this.objId = objId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getParentId() {
|
|
|
|
|
return parentId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setParentId(Long parentId) {
|
|
|
|
|
this.parentId = parentId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getMonitorCode() {
|
|
|
|
|
return monitorCode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setMonitorCode(String monitorCode) {
|
|
|
|
|
this.monitorCode = monitorCode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getMonitorName() {
|
|
|
|
|
return monitorName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setMonitorName(String monitorName) {
|
|
|
|
|
this.monitorName = monitorName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Date getCollectTime() {
|
|
|
|
|
return collectTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCollectTime(Date collectTime) {
|
|
|
|
|
this.collectTime = collectTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Date getRecordTime() {
|
|
|
|
|
return recordTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setRecordTime(Date recordTime) {
|
|
|
|
|
this.recordTime = recordTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getvA() {
|
|
|
|
|
return vA;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setvA(BigDecimal vA) {
|
|
|
|
|
this.vA = vA;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getvB() {
|
|
|
|
|
return vB;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setvB(BigDecimal vB) {
|
|
|
|
|
this.vB = vB;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getvC() {
|
|
|
|
|
return vC;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setvC(BigDecimal vC) {
|
|
|
|
|
this.vC = vC;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getiA() {
|
|
|
|
|
return iA;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setiA(BigDecimal iA) {
|
|
|
|
|
this.iA = iA;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getiB() {
|
|
|
|
|
return iB;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setiB(BigDecimal iB) {
|
|
|
|
|
this.iB = iB;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getiC() {
|
|
|
|
|
return iC;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setiC(BigDecimal iC) {
|
|
|
|
|
this.iC = iC;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getGlys() {
|
|
|
|
|
return glys;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setGlys(BigDecimal glys) {
|
|
|
|
|
this.glys = glys;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getZxyg() {
|
|
|
|
|
return zxyg;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setZxyg(BigDecimal zxyg) {
|
|
|
|
|
this.zxyg = zxyg;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getFxyg() {
|
|
|
|
|
return fxyg;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setFxyg(BigDecimal fxyg) {
|
|
|
|
|
this.fxyg = fxyg;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|