elkers
2025-04-07 2dba8dbb14af4616eec876fd9af744651e8beeda
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
package com.nanjing.water.entity.request.waterfacility;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class ReqEditWaterFacility {
    /**
     * 设备id
     */
    private Long id;
    /**
     * 最新数据上报时间间隔(单位分钟)
     */
    private Integer newIntervalTime;
    /**
     * 历史数据上报时间间隔(单位分钟)
     */
    private Integer historyIntervalTime;
    /**
     * 水位采集时间间隔(单位分钟)
     */
    private Integer gatherIntervalTime;
    /**
     * 量程设置
     */
    private BigDecimal range;
    /**
     * 高程设置
     */
    private BigDecimal elevation;
    /**
     * 投放角度
     */
    private BigDecimal putAngle;
    /**
     * 低水位下限
     */
    private BigDecimal lowWaterLevel;
    /**
     * 温度下限设置
     */
    private BigDecimal lowTemperature;
}