kaiyu
2022-03-16 76719337e975f99620aafd16d886f3556a056f76
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
package com.moral.api.pojo.vo.cityAQI;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import com.moral.api.pojo.dto.cityAQI.ConcentrationAndPercent;
 
/**
 * @ClassName CityAreaRangeVO
 * @Description 市内所有县排名VO
 * @Author 陈凯裕
 * @Date 2022/3/16 13:15
 * @Version TODO
 **/
public class CityAreaRangeVO {
    public CityAreaRangeVO() {
    }
 
    private String cityName;
 
    private int range;
 
    private ConcentrationAndPercent compositeIndex;
 
    private ConcentrationAndPercent PM25;
 
    private ConcentrationAndPercent PM10;
 
    private ConcentrationAndPercent SO2;
 
    private ConcentrationAndPercent NO2;
 
    private ConcentrationAndPercent CO;
 
    private ConcentrationAndPercent O3;
 
    private ConcentrationAndPercent fineDays;
 
    private ConcentrationAndPercent serverDays;
 
 
 
 
 
    public String getCityName() {
        return cityName;
    }
 
    public ConcentrationAndPercent getCompositeIndex() {
        return compositeIndex;
    }
    @JsonProperty("PM2_5")
    public ConcentrationAndPercent getPM25() {
        return PM25;
    }
    @JsonProperty("PM10")
    public ConcentrationAndPercent getPM10() {
        return PM10;
    }
    @JsonProperty("SO2")
    public ConcentrationAndPercent getSO2() {
        return SO2;
    }
    @JsonProperty("NO2")
    public ConcentrationAndPercent getNO2() {
        return NO2;
    }
    @JsonProperty("CO")
    public ConcentrationAndPercent getCO() {
        return CO;
    }
    @JsonProperty("O3_8H")
    public ConcentrationAndPercent getO3() {
        return O3;
    }
 
    public ConcentrationAndPercent getFineDays() {
        return fineDays;
    }
 
    public ConcentrationAndPercent getServerDays() {
        return serverDays;
    }
 
 
 
    public void setCityName(String cityName) {
        this.cityName = cityName;
    }
 
    public void setCompositeIndex(ConcentrationAndPercent compositeIndex) {
        this.compositeIndex = compositeIndex;
    }
 
    public void setPM25(ConcentrationAndPercent PM25) {
        this.PM25 = PM25;
    }
 
    public void setPM10(ConcentrationAndPercent PM10) {
        this.PM10 = PM10;
    }
 
    public void setSO2(ConcentrationAndPercent SO2) {
        this.SO2 = SO2;
    }
 
    public void setNO2(ConcentrationAndPercent NO2) {
        this.NO2 = NO2;
    }
 
    public void setCO(ConcentrationAndPercent CO) {
        this.CO = CO;
    }
 
    public void setO3(ConcentrationAndPercent o3) {
        O3 = o3;
    }
 
    public void setFineDays(ConcentrationAndPercent fineDays) {
        this.fineDays = fineDays;
    }
 
    public void setServerDays(ConcentrationAndPercent serverDays) {
        this.serverDays = serverDays;
    }
 
    public int getRange() {
        return range;
    }
 
    public void setRange(int range) {
        this.range = range;
    }
}