package com.ruoyi.fuzhou.domain;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import java.util.Date;
|
|
/**
|
* <p>
|
* 水分析数据
|
* </p>
|
*
|
* @author zhangyy
|
* @since 2025-03-25
|
*/
|
@TableName("RECEIVE_WATER_ANALYSE")
|
@Schema( description = "水分析数据")
|
public class ReceiveWaterAnalyse {
|
|
@Schema(title ="主键")
|
@TableId(value = "ID", type = IdType.INPUT)
|
private Long 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(description = "设备名称")
|
@TableField("DEVICE_NAME")
|
private String deviceName;
|
|
@Schema(title ="入库时间")
|
@TableField(value = "CREATE_TIME", fill = FieldFill.INSERT)
|
private Date createTime;
|
|
@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 Long getId() {
|
return id;
|
}
|
|
public void setId(Long 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;
|
}
|
|
|
}
|