kaiyu
2022-02-11 9abccec290bc1a620a27011ffbaa3713d57e1acc
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
package com.moral.api.pojo.dto.cityAQI;
 
import lombok.Data;
 
/**
 * @ClassName
 * @Description TODO
 * @Author 陈凯裕
 * @Date 2022/2/10 13:18
 * @Version TODO
 **/
@Data
public class DataPercentRange {
 
    /*
     * 对应的浓度/指数/天数
     * */
    private String concentration;
 
    /*
     * 同比
     * */
    private String percent;
 
    /*
    * 省内排名
    * */
    private Integer provinceRange;
 
    /*
    * 2+26排名
    * */
    private Integer twentyEightCitiesRange;
 
    /*
    * 省内通道排名
    * */
    private Integer provinceChannelRange;
}