package com.ruoyi.fuzhou.domain;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import java.math.BigInteger;
|
import java.util.Date;
|
|
/**
|
* <p>
|
* 水实时数据
|
* </p>
|
*
|
* @author sunjiawei
|
* @since 2025-04-25
|
*/
|
|
@TableName("RECEIVE_WATER_VALUE_FINAL")
|
@Schema(description = "水实时数据")
|
public class ReceiveWaterValueFinal {
|
|
@Schema(title ="主键")
|
@TableId(value = "ID", type = IdType.INPUT)
|
private BigInteger id;
|
|
@Schema(title ="瞬时流量")
|
@TableField("TIME_FLOW")
|
private String timeFlow;
|
|
@Schema(title ="瞬时流速")
|
@TableField("FLOW_RATE")
|
private String flowRate;
|
|
@Schema(title ="流量百分比")
|
@TableField("RATE")
|
private String rate;
|
|
@Schema(title ="流体电导比")
|
@TableField("FLOW_ELECTRICITY")
|
private String flowElectricity;
|
|
@Schema(title ="入库时间")
|
@TableField(value = "CREATE_TIME", fill = FieldFill.INSERT)
|
private Date createTime;
|
|
@Schema(title ="更新时间")
|
@TableField(value = "UPDATE_TIME", fill = FieldFill.INSERT_UPDATE)
|
private Date updateTime;
|
|
@Schema(title ="设备名称")
|
@TableField("DEVICE_NAME")
|
private String deviceName;
|
|
@Schema(title ="水深")
|
@TableField("WATER_DEEP")
|
private String waterDeep;
|
|
@Schema(title ="水压")
|
@TableField("WATER_YA")
|
private String waterYa;
|
|
@Schema(title ="正向累计流量整数")
|
@TableField("ZHENG_TOTAL")
|
private String zhengTotal;
|
|
@Schema(title ="正向累计数值小数")
|
@TableField("ZHENG_LITLE_TOTAL")
|
private String zhengLitleTotal;
|
|
@Schema(title ="反向累计数值整")
|
@TableField("FAN_TOTAL")
|
private String fanTotal;
|
|
@Schema(title ="反向累计数值小数")
|
@TableField("FAN_LITLE_TOTAL")
|
private String fanLitleTotal;
|
|
@Schema(title ="瞬时流量单位")
|
@TableField("FLOW_UNIT")
|
private String flowUnit;
|
|
@Schema(title ="累计流量单位")
|
@TableField("TOTAL_UNIT")
|
private String totalUnit;
|
|
public BigInteger getId() {
|
return id;
|
}
|
|
public void setId(BigInteger id) {
|
this.id = id;
|
}
|
|
public String getTimeFlow() {
|
return timeFlow;
|
}
|
|
public void setTimeFlow(String timeFlow) {
|
this.timeFlow = timeFlow;
|
}
|
|
public String getFlowRate() {
|
return flowRate;
|
}
|
|
public void setFlowRate(String flowRate) {
|
this.flowRate = flowRate;
|
}
|
|
public String getRate() {
|
return rate;
|
}
|
|
public void setRate(String rate) {
|
this.rate = rate;
|
}
|
|
public String getFlowElectricity() {
|
return flowElectricity;
|
}
|
|
public void setFlowElectricity(String flowElectricity) {
|
this.flowElectricity = flowElectricity;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getDeviceName() {
|
return deviceName;
|
}
|
|
public void setDeviceName(String deviceName) {
|
this.deviceName = deviceName;
|
}
|
|
public String getWaterDeep() {
|
return waterDeep;
|
}
|
|
public void setWaterDeep(String waterDeep) {
|
this.waterDeep = waterDeep;
|
}
|
|
public String getWaterYa() {
|
return waterYa;
|
}
|
|
public void setWaterYa(String waterYa) {
|
this.waterYa = waterYa;
|
}
|
|
public String getZhengTotal() {
|
return zhengTotal;
|
}
|
|
public void setZhengTotal(String zhengTotal) {
|
this.zhengTotal = zhengTotal;
|
}
|
|
public String getZhengLitleTotal() {
|
return zhengLitleTotal;
|
}
|
|
public void setZhengLitleTotal(String zhengLitleTotal) {
|
this.zhengLitleTotal = zhengLitleTotal;
|
}
|
|
public String getFanTotal() {
|
return fanTotal;
|
}
|
|
public void setFanTotal(String fanTotal) {
|
this.fanTotal = fanTotal;
|
}
|
|
public String getFanLitleTotal() {
|
return fanLitleTotal;
|
}
|
|
public void setFanLitleTotal(String fanLitleTotal) {
|
this.fanLitleTotal = fanLitleTotal;
|
}
|
|
public String getFlowUnit() {
|
return flowUnit;
|
}
|
|
public void setFlowUnit(String flowUnit) {
|
this.flowUnit = flowUnit;
|
}
|
|
public String getTotalUnit() {
|
return totalUnit;
|
}
|
|
public void setTotalUnit(String totalUnit) {
|
this.totalUnit = totalUnit;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
}
|