package com.dy.pipIrrGlobal.pojoRm;
|
|
import java.util.Date;
|
|
/**
|
* @author ZhuBaoMin
|
* @date 2024-06-17 11:28
|
* @LastEditTime 2024-06-17 11:28
|
* @Description
|
*/
|
|
/**
|
* 开关阀报最新数据表
|
*/
|
public class RmOpenCloseValveLast {
|
public static final long serialVersionUID = 202402231602001L;
|
/**
|
* 主键
|
*/
|
private Long id;
|
|
/**
|
* 控制器实体ID(外键)
|
*/
|
private Long controllerId;
|
|
/**
|
* 取水口实体ID(外键)
|
*/
|
private Long intakeId;
|
|
/**
|
* 控制器地址
|
*/
|
private String rtuAddr;
|
|
/**
|
* 开阀数据接收日期时间
|
*/
|
private Date opDt;
|
|
/**
|
* 开阀控制器时钟
|
*/
|
private Date opRtuDt;
|
|
/**
|
* IC卡地址(远程关闭时为0)
|
*/
|
private String opIcCardAddr;
|
|
/**
|
* IC卡编号(17位数字)
|
*/
|
private String opIcCardNo;
|
|
/**
|
* 开阀订单号(16位数字)
|
*/
|
private String opOrderNo;
|
|
/**
|
* 开泵/阀时间
|
*/
|
private Date openDt;
|
|
/**
|
* 开阀水表累计水量
|
*/
|
private Double opWaterTotalAmount;
|
|
/**
|
* 开阀电表累计电量
|
*/
|
private Double opEleTotalAmount;
|
|
/**
|
* 开阀用户剩余金额
|
*/
|
private Double opMoneyRemainUser;
|
|
/**
|
* 开阀用户剩余水量
|
*/
|
private Double opWaterRemainUser;
|
|
/**
|
* 关泵/阀方式
|
*/
|
private String opType;
|
|
/**
|
* 关阀IC卡地址(远程关闭时为0)
|
*/
|
private String clIcCardAddr;
|
|
/**
|
* 关阀IC卡编号(17位数字)
|
*/
|
private String clIcCardNo;
|
|
/**
|
* 关阀订单号(16位数字)
|
*/
|
private String clOrderNo;
|
|
/**
|
* 开始时间(分时日月)
|
*/
|
private Date startDt;
|
|
/**
|
* 结束时间(分时日月)
|
*/
|
private Date endDt;
|
|
/**
|
* 水表累计流量
|
*/
|
private Double clWaterTotalAmount;
|
|
/**
|
* 电表累计电量
|
*/
|
private Double clEleTotalAmount;
|
|
/**
|
* 用户剩余金额
|
*/
|
private Double clMoneyRemainUser;
|
|
/**
|
* 用户剩余水量
|
*/
|
private Double clWaterRemainUser;
|
|
/**
|
* 本次使用电量
|
*/
|
private Double thisEle;
|
|
/**
|
* 本次使用水量
|
*/
|
private Double thisWater;
|
|
/**
|
* 本次使用金额
|
*/
|
private Double thisMoney;
|
|
/**
|
* 本次使用时间长
|
*/
|
private Integer thisDuration;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getControllerId() {
|
return controllerId;
|
}
|
|
public void setControllerId(Long controllerId) {
|
this.controllerId = controllerId;
|
}
|
|
public Long getIntakeId() {
|
return intakeId;
|
}
|
|
public void setIntakeId(Long intakeId) {
|
this.intakeId = intakeId;
|
}
|
|
public String getRtuAddr() {
|
return rtuAddr;
|
}
|
|
public void setRtuAddr(String rtuAddr) {
|
this.rtuAddr = rtuAddr;
|
}
|
|
public Date getOpDt() {
|
return opDt;
|
}
|
|
public void setOpDt(Date opDt) {
|
this.opDt = opDt;
|
}
|
|
public Date getOpRtuDt() {
|
return opRtuDt;
|
}
|
|
public void setOpRtuDt(Date opRtuDt) {
|
this.opRtuDt = opRtuDt;
|
}
|
|
public String getOpIcCardAddr() {
|
return opIcCardAddr;
|
}
|
|
public void setOpIcCardAddr(String opIcCardAddr) {
|
this.opIcCardAddr = opIcCardAddr;
|
}
|
|
public String getOpIcCardNo() {
|
return opIcCardNo;
|
}
|
|
public void setOpIcCardNo(String opIcCardNo) {
|
this.opIcCardNo = opIcCardNo;
|
}
|
|
public String getOpOrderNo() {
|
return opOrderNo;
|
}
|
|
public void setOpOrderNo(String opOrderNo) {
|
this.opOrderNo = opOrderNo;
|
}
|
|
public Date getOpenDt() {
|
return openDt;
|
}
|
|
public void setOpenDt(Date openDt) {
|
this.openDt = openDt;
|
}
|
|
public Double getOpWaterTotalAmount() {
|
return opWaterTotalAmount;
|
}
|
|
public void setOpWaterTotalAmount(Double opWaterTotalAmount) {
|
this.opWaterTotalAmount = opWaterTotalAmount;
|
}
|
|
public Double getOpEleTotalAmount() {
|
return opEleTotalAmount;
|
}
|
|
public void setOpEleTotalAmount(Double opEleTotalAmount) {
|
this.opEleTotalAmount = opEleTotalAmount;
|
}
|
|
public Double getOpMoneyRemainUser() {
|
return opMoneyRemainUser;
|
}
|
|
public void setOpMoneyRemainUser(Double opMoneyRemainUser) {
|
this.opMoneyRemainUser = opMoneyRemainUser;
|
}
|
|
public Double getOpWaterRemainUser() {
|
return opWaterRemainUser;
|
}
|
|
public void setOpWaterRemainUser(Double opWaterRemainUser) {
|
this.opWaterRemainUser = opWaterRemainUser;
|
}
|
|
public String getOpType() {
|
return opType;
|
}
|
|
public void setOpType(String opType) {
|
this.opType = opType;
|
}
|
|
public String getClIcCardAddr() {
|
return clIcCardAddr;
|
}
|
|
public void setClIcCardAddr(String clIcCardAddr) {
|
this.clIcCardAddr = clIcCardAddr;
|
}
|
|
public String getClIcCardNo() {
|
return clIcCardNo;
|
}
|
|
public void setClIcCardNo(String clIcCardNo) {
|
this.clIcCardNo = clIcCardNo;
|
}
|
|
public String getClOrderNo() {
|
return clOrderNo;
|
}
|
|
public void setClOrderNo(String clOrderNo) {
|
this.clOrderNo = clOrderNo;
|
}
|
|
public Date getStartDt() {
|
return startDt;
|
}
|
|
public void setStartDt(Date startDt) {
|
this.startDt = startDt;
|
}
|
|
public Date getEndDt() {
|
return endDt;
|
}
|
|
public void setEndDt(Date endDt) {
|
this.endDt = endDt;
|
}
|
|
public Double getClWaterTotalAmount() {
|
return clWaterTotalAmount;
|
}
|
|
public void setClWaterTotalAmount(Double clWaterTotalAmount) {
|
this.clWaterTotalAmount = clWaterTotalAmount;
|
}
|
|
public Double getClEleTotalAmount() {
|
return clEleTotalAmount;
|
}
|
|
public void setClEleTotalAmount(Double clEleTotalAmount) {
|
this.clEleTotalAmount = clEleTotalAmount;
|
}
|
|
public Double getClMoneyRemainUser() {
|
return clMoneyRemainUser;
|
}
|
|
public void setClMoneyRemainUser(Double clMoneyRemainUser) {
|
this.clMoneyRemainUser = clMoneyRemainUser;
|
}
|
|
public Double getClWaterRemainUser() {
|
return clWaterRemainUser;
|
}
|
|
public void setClWaterRemainUser(Double clWaterRemainUser) {
|
this.clWaterRemainUser = clWaterRemainUser;
|
}
|
|
public Double getThisEle() {
|
return thisEle;
|
}
|
|
public void setThisEle(Double thisEle) {
|
this.thisEle = thisEle;
|
}
|
|
public Double getThisWater() {
|
return thisWater;
|
}
|
|
public void setThisWater(Double thisWater) {
|
this.thisWater = thisWater;
|
}
|
|
public Double getThisMoney() {
|
return thisMoney;
|
}
|
|
public void setThisMoney(Double thisMoney) {
|
this.thisMoney = thisMoney;
|
}
|
|
public Integer getThisDuration() {
|
return thisDuration;
|
}
|
|
public void setThisDuration(Integer thisDuration) {
|
this.thisDuration = thisDuration;
|
}
|
}
|