| | |
| | | import lombok.NoArgsConstructor; |
| | | import lombok.ToString; |
| | | |
| | | @NoArgsConstructor |
| | | @AllArgsConstructor |
| | | @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 = "主键") |