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_OIL_VALUE_FINAL")
|
@Schema(description = "油设备实时数据")
|
public class ReceiveOilValueFinal {
|
|
@Schema(title ="主键")
|
@TableId(value = "ID", type = IdType.INPUT)
|
private BigInteger id;
|
|
@Schema(title ="质量流量")
|
@TableField("QUALITY_FLOW")
|
private String qualityFlow;
|
|
@Schema(title ="密度")
|
@TableField("DENSITY")
|
private String density;
|
|
@Schema(title ="温度")
|
@TableField("TEMP")
|
private String temp;
|
|
@Schema(title ="体积流量")
|
@TableField("VOLUME_FLOW")
|
private String volumeFlow;
|
|
@Schema(title ="体积质量")
|
@TableField("VOLUME_QUALITY")
|
private String volumeQuality;
|
|
@Schema(title ="体积总量")
|
@TableField("VOLUME_TOTAL")
|
private String volumeTotal;
|
|
@Schema(title ="含水率")
|
@TableField("WATER_RATE")
|
private String waterRate;
|
|
@Schema(title ="纯油质量累积")
|
@TableField("OIL_TOTAL")
|
private String oilTotal;
|
|
@Schema(title ="纯水质量累积")
|
@TableField("WATER_TOTAL")
|
private String waterTotal;
|
|
@Schema(title ="纯油量标准温度下")
|
@TableField("OIL_TEMP")
|
private String oilTemp;
|
|
@Schema(title ="纯水量标准温度下")
|
@TableField("WATER_TEMP")
|
private String waterTemp;
|
|
@Schema(title ="纯油量")
|
@TableField("OIL")
|
private String oil;
|
|
@Schema(title ="纯水量")
|
@TableField("WATER")
|
private String water;
|
|
@Schema(title ="温补后油密度")
|
@TableField("TEMP_OIL_DENSITY")
|
private String tempOilDensity;
|
|
@Schema(title ="温补后水密度")
|
@TableField("TEMP_WATER_DENSITY")
|
private String tempWaterDensity;
|
|
@Schema(title ="纯油瞬时流量")
|
@TableField("OIL_TIME_FLOW")
|
private String oilTimeFlow;
|
|
@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("FLOW_TOTAL")
|
private String flowTotal;
|
|
@Schema(title ="质量总量L")
|
@TableField("FLOW_TOTAL_L")
|
private String flowTotalL;
|
|
@Schema(title ="质量总量H")
|
@TableField("FLOW_TOTAL_H")
|
private String flowTotalH;
|
|
@Schema(title ="体积总量L")
|
@TableField("VOLUME_TOTAL_L")
|
private String volumeTotalL;
|
|
@Schema(title ="体积总量H")
|
@TableField("VOLUME_TOTAL_H")
|
private String volumeTotalH;
|
|
public BigInteger getId() {
|
return id;
|
}
|
|
public void setId(BigInteger id) {
|
this.id = id;
|
}
|
|
public String getQualityFlow() {
|
return qualityFlow;
|
}
|
|
public void setQualityFlow(String qualityFlow) {
|
this.qualityFlow = qualityFlow;
|
}
|
|
public String getDensity() {
|
return density;
|
}
|
|
public void setDensity(String density) {
|
this.density = density;
|
}
|
|
public String getTemp() {
|
return temp;
|
}
|
|
public void setTemp(String temp) {
|
this.temp = temp;
|
}
|
|
public String getVolumeFlow() {
|
return volumeFlow;
|
}
|
|
public void setVolumeFlow(String volumeFlow) {
|
this.volumeFlow = volumeFlow;
|
}
|
|
public String getVolumeQuality() {
|
return volumeQuality;
|
}
|
|
public void setVolumeQuality(String volumeQuality) {
|
this.volumeQuality = volumeQuality;
|
}
|
|
public String getVolumeTotal() {
|
return volumeTotal;
|
}
|
|
public void setVolumeTotal(String volumeTotal) {
|
this.volumeTotal = volumeTotal;
|
}
|
|
public String getWaterRate() {
|
return waterRate;
|
}
|
|
public void setWaterRate(String waterRate) {
|
this.waterRate = waterRate;
|
}
|
|
public String getOilTotal() {
|
return oilTotal;
|
}
|
|
public void setOilTotal(String oilTotal) {
|
this.oilTotal = oilTotal;
|
}
|
|
public String getWaterTotal() {
|
return waterTotal;
|
}
|
|
public void setWaterTotal(String waterTotal) {
|
this.waterTotal = waterTotal;
|
}
|
|
public String getOilTemp() {
|
return oilTemp;
|
}
|
|
public void setOilTemp(String oilTemp) {
|
this.oilTemp = oilTemp;
|
}
|
|
public String getWaterTemp() {
|
return waterTemp;
|
}
|
|
public void setWaterTemp(String waterTemp) {
|
this.waterTemp = waterTemp;
|
}
|
|
public String getOil() {
|
return oil;
|
}
|
|
public void setOil(String oil) {
|
this.oil = oil;
|
}
|
|
public String getWater() {
|
return water;
|
}
|
|
public void setWater(String water) {
|
this.water = water;
|
}
|
|
public String getTempOilDensity() {
|
return tempOilDensity;
|
}
|
|
public void setTempOilDensity(String tempOilDensity) {
|
this.tempOilDensity = tempOilDensity;
|
}
|
|
public String getTempWaterDensity() {
|
return tempWaterDensity;
|
}
|
|
public void setTempWaterDensity(String tempWaterDensity) {
|
this.tempWaterDensity = tempWaterDensity;
|
}
|
|
public String getOilTimeFlow() {
|
return oilTimeFlow;
|
}
|
|
public void setOilTimeFlow(String oilTimeFlow) {
|
this.oilTimeFlow = oilTimeFlow;
|
}
|
|
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 getFlowTotal() {
|
return flowTotal;
|
}
|
|
public void setFlowTotal(String flowTotal) {
|
this.flowTotal = flowTotal;
|
}
|
|
public String getFlowTotalL() {
|
return flowTotalL;
|
}
|
|
public void setFlowTotalL(String flowTotalL) {
|
this.flowTotalL = flowTotalL;
|
}
|
|
public String getFlowTotalH() {
|
return flowTotalH;
|
}
|
|
public void setFlowTotalH(String flowTotalH) {
|
this.flowTotalH = flowTotalH;
|
}
|
|
public String getVolumeTotalL() {
|
return volumeTotalL;
|
}
|
|
public void setVolumeTotalL(String volumeTotalL) {
|
this.volumeTotalL = volumeTotalL;
|
}
|
|
public String getVolumeTotalH() {
|
return volumeTotalH;
|
}
|
|
public void setVolumeTotalH(String volumeTotalH) {
|
this.volumeTotalH = volumeTotalH;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
}
|