¶Ô±ÈÐÂÎļþ |
| | |
| | | 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; |
| | | } |
| | | } |