package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import org.apache.ibatis.type.Alias;
|
|
import java.io.Serializable;
|
|
/**
|
* tb_water_quality_monitoring
|
* 参数类型和具体名称后期修改
|
*/
|
@ApiModel
|
@Alias("WaterQualityMonitoring")
|
@TableName( schema = "`db_3.5mw_motor`",value = "tb_water_quality_monitoring")
|
public class WaterQualityMonitoring implements Serializable {
|
private Long num;
|
|
/**
|
* 水质监测设备ID
|
*/
|
@ApiModelProperty("水质监测设备ID")
|
private Integer waterDevId;
|
|
/**
|
* 水质类别
|
*/
|
@ApiModelProperty("水质类别")
|
private Double waterQualityCategory;
|
|
/**
|
* pH值
|
*/
|
@ApiModelProperty("pH值")
|
private Double ph;
|
|
/**
|
* 溶解氧
|
*/
|
@ApiModelProperty("溶解氧")
|
private Double dissolvedOxygen;
|
|
/**
|
* 导电率
|
*/
|
@ApiModelProperty("导电率")
|
private Double conductivity;
|
|
/**
|
* 浊度
|
*/
|
@ApiModelProperty("浊度")
|
private Double turbidity;
|
|
private Double param6;
|
|
private Double param7;
|
|
private Double param8;
|
|
private Double param9;
|
|
private Double param10;
|
|
private String note;
|
|
private static final long serialVersionUID = 1L;
|
|
public Long getNum() {
|
return num;
|
}
|
|
public void setNum(Long num) {
|
this.num = num;
|
}
|
|
public Integer getWaterDevId() {
|
return waterDevId;
|
}
|
|
public void setWaterDevId(Integer waterDevId) {
|
this.waterDevId = waterDevId;
|
}
|
|
public Double getWaterQualityCategory() {
|
return waterQualityCategory;
|
}
|
|
public void setWaterQualityCategory(Double waterQualityCategory) {
|
this.waterQualityCategory = waterQualityCategory;
|
}
|
|
public Double getPh() {
|
return ph;
|
}
|
|
public void setPh(Double ph) {
|
this.ph = ph;
|
}
|
|
public Double getDissolvedOxygen() {
|
return dissolvedOxygen;
|
}
|
|
public void setDissolvedOxygen(Double dissolvedOxygen) {
|
this.dissolvedOxygen = dissolvedOxygen;
|
}
|
|
public Double getConductivity() {
|
return conductivity;
|
}
|
|
public void setConductivity(Double conductivity) {
|
this.conductivity = conductivity;
|
}
|
|
public Double getTurbidity() {
|
return turbidity;
|
}
|
|
public void setTurbidity(Double turbidity) {
|
this.turbidity = turbidity;
|
}
|
|
public Double getParam6() {
|
return param6;
|
}
|
|
public void setParam6(Double param6) {
|
this.param6 = param6;
|
}
|
|
public Double getParam7() {
|
return param7;
|
}
|
|
public void setParam7(Double param7) {
|
this.param7 = param7;
|
}
|
|
public Double getParam8() {
|
return param8;
|
}
|
|
public void setParam8(Double param8) {
|
this.param8 = param8;
|
}
|
|
public Double getParam9() {
|
return param9;
|
}
|
|
public void setParam9(Double param9) {
|
this.param9 = param9;
|
}
|
|
public Double getParam10() {
|
return param10;
|
}
|
|
public void setParam10(Double param10) {
|
this.param10 = param10;
|
}
|
|
public String getNote() {
|
return note;
|
}
|
|
public void setNote(String note) {
|
this.note = note;
|
}
|
}
|