jinpengyong
2024-02-02 28923b3d67c58b032bc4ff128aa1d5e62d73dba1
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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;
 
}