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_OIL_ANALYSE")
|
@Schema( description = "油设分析数据")
|
public class ReceiveOilAnalyse {
|
|
@Schema(description = "主键")
|
@TableId(value = "ID", type = IdType.INPUT)
|
private Long id;
|
|
@Schema(description = "质量流量")
|
@TableField("QUALITY_FLOW")
|
private String qualityFlow;
|
|
@Schema(description = "密度")
|
@TableField("DENSITY")
|
private String density;
|
|
@Schema(description = "温度")
|
@TableField("TEMP")
|
private String temp;
|
|
@Schema(description = "体积流量")
|
@TableField("VOLUME_FLOW")
|
private String volumeFlow;
|
|
@Schema(description = "体积质量")
|
@TableField("VOLUME_QUALITY")
|
private String volumeQuality;
|
|
@Schema(description = "体积总量")
|
@TableField("VOLUME_TOTAL")
|
private String volumeTotal;
|
|
@Schema(description = "含水率")
|
@TableField("WATER_RATE")
|
private String waterRate;
|
|
@Schema(description = "纯油质量累积")
|
@TableField("OIL_TOTAL")
|
private String oilTotal;
|
|
@Schema(description = "纯水质量累积")
|
@TableField("WATER_TOTAL")
|
private String waterTotal;
|
|
@Schema(description = "纯油量标准温度下")
|
@TableField("OIL_TEMP")
|
private String oilTemp;
|
|
@Schema(description = "纯水量标准温度下")
|
@TableField("WATER_TEMP")
|
private String waterTemp;
|
|
@Schema(description = "纯油量")
|
@TableField("OIL")
|
private String oil;
|
|
@Schema(description = "纯水量")
|
@TableField("WATER")
|
private String water;
|
|
@Schema(description = "温补后油密度")
|
@TableField("TEMP_OIL_DENSITY")
|
private String tempOilDensity;
|
|
@Schema(description = "温补后水密度")
|
@TableField("TEMP_WATER_DENSITY")
|
private String tempWaterDensity;
|
|
@Schema(description = "纯油瞬时流量")
|
@TableField("OIL_TIME_FLOW")
|
private String oilTimeFlow;
|
|
@Schema(description = "入库时间")
|
@TableField(value = "CREATE_TIME", fill = FieldFill.INSERT)
|
private Date createTime;
|
|
@Schema(description = "设备名称")
|
@TableField("DEVICE_NAME")
|
private String deviceName;
|
|
@Schema(description = "累计流量")
|
@TableField("FLOW_TOTAL")
|
private String flowTotal;
|
|
@Schema(description = "质量总量L")
|
@TableField("FLOW_TOTAL_L")
|
private String flowTotalL;
|
|
@Schema(description = "质量总量H")
|
@TableField("FLOW_TOTAL_H")
|
private String flowTotalH;
|
|
@Schema(description = "体积总量L")
|
@TableField("VOLUME_TOTAL_L")
|
private String volumeTotalL;
|
|
@Schema(description = "体积总量H")
|
@TableField("VOLUME_TOTAL_H")
|
private String volumeTotalH;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long 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;
|
}
|
|
|
}
|