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
package com.fengdu.gas.entity.response.facility;
 
import lombok.Data;
 
@Data
public class FacilityCount {
    /**
     * 监控点id
     */
    private Long pointId;
    /**
     * 监控点名称
     */
    private String pointName;
    /**
     * 甲烷传感器数量
     */
    private Integer methaneCount;
    /**
     * 硫化氢传感器数量
     */
    private Integer hyrothionCount;
    /**
     * 风机数量
     */
    private Integer facilityFanCount;
    /**
     * 终端设备台数
     */
    private Integer boxCount;
    /**
     * 总设备数量
     */
    private Integer sumCount;
}