| 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
52
53
54
55
 | | package com.moral.api.pojo.dto.cityAQI; |  |   |  | import lombok.Data; |  |   |  | /** |  |  * @ClassName |  |  * @Description TODO |  |  * @Author 陈凯裕 |  |  * @Date 2022/2/25 15:14 |  |  * @Version TODO |  |  **/ |  | @Data |  | public class ComplianceDaysDTO { |  |   |  |     //月份 |  |     int month; |  |   |  |     //aqi达标天数 |  |     int aqiComplianceDays; |  |   |  |     //同期aqi达标天数 |  |     int comAqiComplianceDays; |  |   |  |     //aqi达标率 |  |     double aqiCompliancePer; |  |   |  |     //同期aqi达标率 |  |     double comAqiCompliancePer; |  |   |  |     //PM2.5污染超标天数 |  |     int PM2_5Days; |  |   |  |     int PM10Days; |  |   |  |     int SO2Days; |  |   |  |     int NO2Days; |  |   |  |     int CODays; |  |   |  |     int O3Days; |  |   |  |     //PM2.5首要污染天数 |  |     int PM2_5FirstDays; |  |   |  |     int PM10FirstDays; |  |   |  |     int SO2FirstDays; |  |   |  |     int NO2FirstDays; |  |   |  |     int COFirstDays; |  |   |  |     int O3FirstDays; |  | } | 
 |