whycrzg
2021-05-21 e4cd7fd3e48a5280d15cfbf07ca5e1e18b4f74d0
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 Float waterQualityCategory;
 
    /**
     * pH值
     */
    @ApiModelProperty("pH值")
    private Float ph;
 
    /**
     * 溶解氧
     */
    @ApiModelProperty("溶解氧")
    private Float dissolvedOxygen;
 
    /**
     * 导电率
     */
    @ApiModelProperty("导电率")
    private Float conductivity;
 
    /**
     * 浊度
     */
    @ApiModelProperty("浊度")
    private Float turbidity;
 
    private Float param6;
 
    private Float param7;
 
    private Float param8;
 
    private Float param9;
 
    private Float 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 Float getWaterQualityCategory() {
        return waterQualityCategory;
    }
 
    public void setWaterQualityCategory(Float waterQualityCategory) {
        this.waterQualityCategory = waterQualityCategory;
    }
 
    public Float getPh() {
        return ph;
    }
 
    public void setPh(Float ph) {
        this.ph = ph;
    }
 
    public Float getDissolvedOxygen() {
        return dissolvedOxygen;
    }
 
    public void setDissolvedOxygen(Float dissolvedOxygen) {
        this.dissolvedOxygen = dissolvedOxygen;
    }
 
    public Float getConductivity() {
        return conductivity;
    }
 
    public void setConductivity(Float conductivity) {
        this.conductivity = conductivity;
    }
 
    public Float getTurbidity() {
        return turbidity;
    }
 
    public void setTurbidity(Float turbidity) {
        this.turbidity = turbidity;
    }
 
    public Float getParam6() {
        return param6;
    }
 
    public void setParam6(Float param6) {
        this.param6 = param6;
    }
 
    public Float getParam7() {
        return param7;
    }
 
    public void setParam7(Float param7) {
        this.param7 = param7;
    }
 
    public Float getParam8() {
        return param8;
    }
 
    public void setParam8(Float param8) {
        this.param8 = param8;
    }
 
    public Float getParam9() {
        return param9;
    }
 
    public void setParam9(Float param9) {
        this.param9 = param9;
    }
 
    public Float getParam10() {
        return param10;
    }
 
    public void setParam10(Float param10) {
        this.param10 = param10;
    }
 
    public String getNote() {
        return note;
    }
 
    public void setNote(String note) {
        this.note = note;
    }
}