package com.moral.api.pojo.dto.dataDisplay; import lombok.Data; import java.util.Map; /** * @ClassName DataDisplayDTO * @Description TODO * @Author 陈凯裕 * @Date 2021/9/26 16:53 * @Version TODO **/ @Data public class MonitorPointDataDisplayDTO { private String mac; private String deviceName; private String time; /* * CO * */ private Double a21005; /* * SO2 * */ private Integer a21026; /* * NO2 * */ private Integer a21004; /* * AQI * */ private Integer AQI; /* * PM10 * */ private Integer a34002; /* * TVOC * */ private Double a99054; /* * PM2.5 * */ private Integer a34004; /* * O3 * */ private Integer a05024; /* * 综合指数 * */ private Double comIndex; }