燕山石化溯源三维电子沙盘-【后端】-服务
1
13693261870
2023-04-27 c13d62bed986535319da834d64ce15e4ca13c396
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
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;
    }
}