package com.yssh.entity;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import lombok.AllArgsConstructor;
|
import lombok.Data;
|
import lombok.NoArgsConstructor;
|
import lombok.ToString;
|
|
@ToString
|
@Data
|
@ApiModel(value = "溯源反馈",description = "溯源反馈")
|
public class FeedbackDetail implements Serializable{
|
public FeedbackDetail() {
|
}
|
|
public FeedbackDetail(Long id, String tableName, String locationName, String detectionId, String detectionVocsName, Double detectionValue, String practicalId, String practicalVocsName, Double practicalValue, Date createTime) {
|
this.id = id;
|
this.tableName = tableName;
|
this.locationName = locationName;
|
this.detectionId = detectionId;
|
this.detectionVocsName = detectionVocsName;
|
this.detectionValue = detectionValue;
|
this.practicalId = practicalId;
|
this.practicalVocsName = practicalVocsName;
|
this.practicalValue = practicalValue;
|
this.createTime = createTime;
|
}
|
|
private static final long serialVersionUID = 6877008992053903605L;
|
|
@ApiModelProperty(value = "主键")
|
private Long id;
|
@ApiModelProperty(value = "表名")
|
private String tableName;
|
@ApiModelProperty(value = "点位名称")
|
private String locationName;
|
@ApiModelProperty(value = "检测编号")
|
private String detectionId;
|
@ApiModelProperty(value = "检测vocs名称")
|
private String detectionVocsName;
|
@ApiModelProperty(value = "检测值")
|
private Double detectionValue;
|
@ApiModelProperty(value = "实际编号")
|
private String practicalId;
|
@ApiModelProperty(value = "实际vocs名称")
|
private String practicalVocsName;
|
@ApiModelProperty(value = "实际值")
|
private Double practicalValue;
|
@ApiModelProperty(value = "创建时间")
|
private Date createTime;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getTableName() {
|
return tableName;
|
}
|
|
public void setTableName(String tableName) {
|
this.tableName = tableName;
|
}
|
|
public String getLocationName() {
|
return locationName;
|
}
|
|
public void setLocationName(String locationName) {
|
this.locationName = locationName;
|
}
|
|
public String getDetectionId() {
|
return detectionId;
|
}
|
|
public void setDetectionId(String detectionId) {
|
this.detectionId = detectionId;
|
}
|
|
public String getDetectionVocsName() {
|
return detectionVocsName;
|
}
|
|
public void setDetectionVocsName(String detectionVocsName) {
|
this.detectionVocsName = detectionVocsName;
|
}
|
|
public Double getDetectionValue() {
|
return detectionValue;
|
}
|
|
public void setDetectionValue(Double detectionValue) {
|
this.detectionValue = detectionValue;
|
}
|
|
public String getPracticalId() {
|
return practicalId;
|
}
|
|
public void setPracticalId(String practicalId) {
|
this.practicalId = practicalId;
|
}
|
|
public String getPracticalVocsName() {
|
return practicalVocsName;
|
}
|
|
public void setPracticalVocsName(String practicalVocsName) {
|
this.practicalVocsName = practicalVocsName;
|
}
|
|
public Double getPracticalValue() {
|
return practicalValue;
|
}
|
|
public void setPracticalValue(Double practicalValue) {
|
this.practicalValue = practicalValue;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
}
|