13693261870
2025-07-02 6708810c4de34dfb9513061432d656f91d56ee3a
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
package com.ruoyi.fuzhou.domain;
 
import com.baomidou.mybatisplus.annotation.*;
import io.swagger.v3.oas.annotations.media.Schema;
 
import java.util.Date;
 
/**
 * <p>
 * 水实时数据
 * </p>
 *
 * @author zhangyy
 * @since 2025-03-13
 */
 
@TableName("RECEIVE_WATER_VALUE")
@Schema( description = "水实时数据")
public class ReceiveWaterValue {
 
    @Schema(title ="主键")
    @TableId(value = "ID", type = IdType.ASSIGN_ID)
    private Long id;
 
    @Schema(title ="瞬时流量")
    @TableField("TIME_FLOW")
    private String timeFlow;
 
    @Schema(title ="瞬时流速")
    @TableField("FLOW_RATE")
    private String flowRate;
 
    @Schema(title ="流量百分比")
    @TableField("RATE")
    private String rate;
 
    @Schema(title ="流体电导比")
    @TableField("FLOW_ELECTRICITY")
    private String flowElectricity;
 
    @Schema(description = "设备名称")
    @TableField("DEVICE_NAME")
    private String deviceName;
 
    @Schema(title ="入库时间")
    @TableField(value = "CREATE_TIME", fill = FieldFill.INSERT)
    private Date createTime;
 
    @Schema(title = "水深")
    @TableField("WATER_DEEP")
    private String waterDeep;
 
    @Schema(title = "水压")
    @TableField("WATER_YA")
    private String waterYa;
 
    @Schema(title = "正向累计流量整数")
    @TableField("ZHENG_TOTAL")
    private String zhengTotal;
 
    @Schema(title = "正向累计数值小数")
    @TableField("ZHENG_LITLE_TOTAL")
    private String zhengLitleTotal;
 
    @Schema(title = "反向累计数值整")
    @TableField("FAN_TOTAL")
    private String fanTotal;
 
    @Schema(title = "反向累计数值小数")
    @TableField("FAN_LITLE_TOTAL")
    private String fanLitleTotal;
 
    @Schema(title = "瞬时流量单位")
    @TableField("FLOW_UNIT")
    private String flowUnit;
 
    @Schema(title = "累计流量单位")
    @TableField("TOTAL_UNIT")
    private String totalUnit;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getTimeFlow() {
        return timeFlow;
    }
 
    public void setTimeFlow(String timeFlow) {
        this.timeFlow = timeFlow;
    }
 
    public String getFlowRate() {
        return flowRate;
    }
 
    public void setFlowRate(String flowRate) {
        this.flowRate = flowRate;
    }
 
    public String getRate() {
        return rate;
    }
 
    public void setRate(String rate) {
        this.rate = rate;
    }
 
    public String getFlowElectricity() {
        return flowElectricity;
    }
 
    public void setFlowElectricity(String flowElectricity) {
        this.flowElectricity = flowElectricity;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public String getDeviceName() {
        return deviceName;
    }
 
    public void setDeviceName(String deviceName) {
        this.deviceName = deviceName;
    }
 
    public String getWaterDeep() {
        return waterDeep;
    }
 
    public void setWaterDeep(String waterDeep) {
        this.waterDeep = waterDeep;
    }
 
    public String getWaterYa() {
        return waterYa;
    }
 
    public void setWaterYa(String waterYa) {
        this.waterYa = waterYa;
    }
 
    public String getZhengTotal() {
        return zhengTotal;
    }
 
    public void setZhengTotal(String zhengTotal) {
        this.zhengTotal = zhengTotal;
    }
 
    public String getZhengLitleTotal() {
        return zhengLitleTotal;
    }
 
    public void setZhengLitleTotal(String zhengLitleTotal) {
        this.zhengLitleTotal = zhengLitleTotal;
    }
 
    public String getFanTotal() {
        return fanTotal;
    }
 
    public void setFanTotal(String fanTotal) {
        this.fanTotal = fanTotal;
    }
 
    public String getFanLitleTotal() {
        return fanLitleTotal;
    }
 
    public void setFanLitleTotal(String fanLitleTotal) {
        this.fanLitleTotal = fanLitleTotal;
    }
 
    public String getFlowUnit() {
        return flowUnit;
    }
 
    public void setFlowUnit(String flowUnit) {
        this.flowUnit = flowUnit;
    }
 
    public String getTotalUnit() {
        return totalUnit;
    }
 
    public void setTotalUnit(String totalUnit) {
        this.totalUnit = totalUnit;
    }
}