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; }