liulin
2025-07-09 49aaecfb0617b0e6043147c86f3d303e9f24867e
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
package com.fengdu.gas.entity.response.facility;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class FacilityData {
    /**
     * 监测点id
     */
    private Long  pointId;
    /**
     * 监测点名称名称
     */
    private String pointName;
    /**
     * 左边距
     */
    private String left;
    /**
     * 上边距
     */
    private String top;
    /**
     * 设备id
     */
    private Long  facilityId;
    /**
     * 设备名称
     */
    private String facilityName;
    /**
     * 设备状态
     */
    private String facilityState;
    /**
     * 设备风机状态
     */
    private String facilityFanState;
    /**
     * 设备甲烷值
     */
    private BigDecimal methaneValue;
    /**
     * 硫化氢值
     */
    private BigDecimal hyrothionValue;
    /**
     * 温度
     */
    private BigDecimal temperature;
}