package com.moral.api.pojo.dto.cityAQI; 
 | 
  
 | 
import com.moral.constant.Constants; 
 | 
import lombok.Data; 
 | 
  
 | 
/** 
 | 
 * @ClassName AreaPollutionLevel 
 | 
 * @Description 城市污染等级以及天数占比实体 
 | 
 * @Author 陈凯裕 
 | 
 * @Date 2021/12/30 10:30 
 | 
 * @Version TODO 
 | 
 **/ 
 | 
@Data 
 | 
public class CityPollutionLevel { 
 | 
  
 | 
    /* 
 | 
    * 地区名称 
 | 
    * */ 
 | 
    private String regionName; 
 | 
  
 | 
    /* 
 | 
    * 优天气天数 
 | 
    * */ 
 | 
    private Integer excellentWeatherDays; 
 | 
  
 | 
    /* 
 | 
    * 良天气天数 
 | 
    * */ 
 | 
    private Integer goodWeatherDays; 
 | 
  
 | 
    /* 
 | 
    * 轻度污染天气天数 
 | 
    * */ 
 | 
    private Integer mildWeatherDays; 
 | 
  
 | 
    /* 
 | 
    * 重度污染天气天数 
 | 
    * */ 
 | 
    private Integer middleWeatherDays; 
 | 
  
 | 
    /* 
 | 
    * 重度污染天气天数 
 | 
    * */ 
 | 
    private Integer seriousWeatherDays; 
 | 
  
 | 
    /* 
 | 
    * 严重污染天气天数 
 | 
    * */ 
 | 
    private Integer serverWeatherDays; 
 | 
  
 | 
} 
 |