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;
|
}
|