whycrzg
2021-05-14 54a8c95a36db1de702c0bbbf0f1a967a1cb1ea17
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
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;
    }
}