| | |
| | | import java.time.LocalDateTime; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import java.io.Serializable; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableId("id") |
| | | @JsonProperty("") |
| | | private Integer id; |
| | | |
| | | /** |
| | | * 异常离线天数 |
| | | */ |
| | | @TableField("abnormal_off_line_days") |
| | | @JsonProperty("AbnormalOfflineDays") |
| | | private Integer abnormalOffLineDays; |
| | | |
| | | /** |
| | | * 处理率 |
| | | */ |
| | | @TableField("abnormal_off_line_process_ratio") |
| | | @JsonProperty("AbnormalOfflineProcessRatio") |
| | | private Integer abnormalOffLineProcessRatio; |
| | | |
| | | /** |
| | | * 异常离线待处理天数 |
| | | */ |
| | | @TableField("abnormal_off_line_to_process_days") |
| | | @JsonProperty("AbnormalOfflineToProcessDays") |
| | | private Integer abnormalOffLineToProcessDays; |
| | | |
| | | /** |
| | | * 地址 |
| | | */ |
| | | @TableField("addr") |
| | | @JsonProperty("Addr") |
| | | private String addr; |
| | | |
| | | /** |
| | | * 排放物浓度折算(昨日) |
| | | */ |
| | | @TableField("c_emissions") |
| | | @JsonProperty("CEmissions") |
| | | private BigDecimal cEmissions; |
| | | |
| | | /** |
| | | * 在线日平均排放浓度 |
| | | */ |
| | | @TableField("c_emissions_avg_online") |
| | | @JsonProperty("CEmissionsAvgOnline") |
| | | private BigDecimal cEmissionsAvgOnline; |
| | | |
| | | /** |
| | | * 日最高排放浓度 |
| | | */ |
| | | @TableField("c_emissions_max") |
| | | @JsonProperty("CEmissionsMax") |
| | | private BigDecimal cEmissionsMax; |
| | | |
| | | /** |
| | | * 日最高排放浓度日期 |
| | | */ |
| | | @TableField("c_emissions_max_date") |
| | | @JsonProperty("CEmissionsMaxDate") |
| | | private LocalDateTime cEmissionsMaxDate; |
| | | |
| | | /** |
| | | * 颗粒物浓度折算(昨日) |
| | | */ |
| | | @TableField("c_granule") |
| | | @JsonProperty("CGranule") |
| | | private BigDecimal cGranule; |
| | | |
| | | /** |
| | | * 非甲烷总烃浓度折算 (昨日) |
| | | */ |
| | | @TableField("c_hydrocarbon") |
| | | @JsonProperty("CHydrocarbon") |
| | | private BigDecimal cHydrocarbon; |
| | | |
| | | /** |
| | | * 菜系名 |
| | | */ |
| | | @TableField("cuisine_name") |
| | | @JsonProperty("CuisineName") |
| | | private String cuisineName; |
| | | |
| | | /** |
| | | * 营业执照 |
| | | */ |
| | | @TableField("customer_bl_no") |
| | | @JsonProperty("CustomerBlNo") |
| | | private String customerBlNo; |
| | | |
| | | /** |
| | | * 联系人 |
| | | */ |
| | | @TableField("customer_contact") |
| | | @JsonProperty("CustomerContact") |
| | | private String customerContact; |
| | | |
| | | /** |
| | | * 电话 |
| | | */ |
| | | @TableField("customer_mobile") |
| | | @JsonProperty("CustomerMobile") |
| | | private String customerMobile; |
| | | |
| | | /** |
| | | * 店名称 |
| | | */ |
| | | @TableField("customer_name") |
| | | @JsonProperty("CustomerName") |
| | | private String customerName; |
| | | |
| | | /** |
| | | * 监测仪故障天数 |
| | | */ |
| | | @TableField("detector_failure_days") |
| | | @JsonProperty("DetectorFailureDays") |
| | | private Integer detectorFailureDays; |
| | | |
| | | /** |
| | | * 超标阈值 |
| | | */ |
| | | @TableField("emissions_sill") |
| | | @JsonProperty("EmissionsSill") |
| | | private Double emissionsSill; |
| | | |
| | | /** |
| | | * 超标数 |
| | | */ |
| | | @TableField("excess_num") |
| | | @JsonProperty("ExcessNum") |
| | | private Integer excessNum; |
| | | |
| | | /** |
| | | * 超标待处理天数 |
| | | */ |
| | | @TableField("excess_to_process_days") |
| | | @JsonProperty("ExcessToProcessDays") |
| | | private Integer excessToProcessDays; |
| | | |
| | | /** |
| | | * 净化器不正常使用天数 |
| | | */ |
| | | @TableField("filter_abnormally_used_days") |
| | | @JsonProperty("FilterAbnormallyUsedDays") |
| | | private Integer filterAbnormallyUsedDays; |
| | | |
| | | /** |
| | | * 净化器清洗次数 |
| | | */ |
| | | @TableField("filter_wash_times") |
| | | @JsonProperty("FilterWashTimes") |
| | | private Integer filterWashTimes; |
| | | |
| | | /** |
| | | * 颗粒物超标阈值 |
| | | */ |
| | | @TableField("granuli_sill") |
| | | private Double granuliSill; |
| | | |
| | | /** |
| | | * 健康码颜色 |
| | | */ |
| | | @TableField("health_code_color") |
| | | @JsonProperty("HealthCodeColor") |
| | | private String healthCodeColor; |
| | | |
| | | /** |
| | | * 非甲烷总烃超标阈值 |
| | | */ |
| | | @TableField("hydrocarbon_sill") |
| | | @JsonProperty("HydrocarbonSill") |
| | | private Double hydrocarbonSill; |
| | | |
| | | /** |
| | | * 非甲烷总烃超标阈值 |
| | | */ |
| | | @TableField("granule_sill") |
| | | @JsonProperty("GranuleSill") |
| | | private Double granuleSill; |
| | | /** |
| | | * 监测点Id |
| | | */ |
| | | @TableField("locale_id") |
| | | @JsonProperty("LocaleId") |
| | | private String localeId; |
| | | |
| | | /** |
| | | * 纬度 |
| | | */ |
| | | @TableField("local_lat") |
| | | private String localLat; |
| | | @JsonProperty("LocaleLat") |
| | | private String LocaleLat; |
| | | |
| | | /** |
| | | * 经度 |
| | | */ |
| | | @TableField("local_lng") |
| | | private String localLng; |
| | | @JsonProperty("LocaleLng") |
| | | private String LocaleLng; |
| | | |
| | | /** |
| | | * 设备的mn数据 |
| | | */ |
| | | @TableField("mn") |
| | | @JsonProperty("MN") |
| | | private String mn; |
| | | |
| | | /** |
| | | * 名称 |
| | | */ |
| | | @TableField("name") |
| | | @JsonProperty("Name") |
| | | private String name; |
| | | |
| | | /** |
| | | * 店家原因导致离线天数 |
| | | */ |
| | | @TableField("off_line_cause_by_shop_days") |
| | | private Integer offLineCauseByShopDays; |
| | | @JsonProperty("OfflineCausedByShopDays") |
| | | private Integer OfflineCausedByShopDays; |
| | | |
| | | /** |
| | | * 所属单位 |
| | | */ |
| | | @TableField("owner") |
| | | @JsonProperty("Owner") |
| | | private String owner; |
| | | |
| | | /** |
| | | * 歇业天数 |
| | | */ |
| | | @TableField("shop_close_days") |
| | | private Integer shopCloseDays; |
| | | @JsonProperty("ShopClosedDays") |
| | | private Integer ShopClosedDays; |
| | | |
| | | /** |
| | | * 状态[1:一般监测点,2:特殊监测点,99:废弃监测点] |
| | | */ |
| | | @TableField("status") |
| | | @JsonProperty("Status") |
| | | private Integer status; |
| | | |
| | | /** |
| | | * 状态描述 |
| | | */ |
| | | @TableField("status_desc") |
| | | @JsonProperty("StatusDesc") |
| | | private String statusDesc; |
| | | |
| | | |