| | |
| | | |
| | | import com.moral.api.entity.CityAqiDaily; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.moral.api.pojo.dto.cityAQI.PieChartOfPollutionLevelVO; |
| | | import com.moral.api.pojo.form.aqi.QueryPieChartOfPollutionLevelForm; |
| | | import com.moral.api.pojo.dto.cityAQI.MonthlyPollutionLevel; |
| | | import com.moral.api.pojo.vo.cityAQI.PieChartOfPollutionLevelVO; |
| | | import com.moral.api.pojo.form.aqi.QueryChartOfPollutionLevelForm; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @Author: 陈凯裕 |
| | | * @Date: 2021/11/9 |
| | | */ |
| | | PieChartOfPollutionLevelVO queryPieChartOfPollutionLevels(QueryPieChartOfPollutionLevelForm form); |
| | | PieChartOfPollutionLevelVO queryPieChartOfPollutionLevels(QueryChartOfPollutionLevelForm form); |
| | | |
| | | /** |
| | | * @Description: 查询污染等级的柱状图数据,包括天数和占比 |
| | | * @Param: [form] |
| | | * @return: java.util.List<com.moral.api.pojo.dto.cityAQI.MonthlyPollutionLevel> |
| | | * @Author: 陈凯裕 |
| | | * @Date: 2021/11/22 |
| | | */ |
| | | List<MonthlyPollutionLevel> queryBarChartOfPollutionLevels(QueryChartOfPollutionLevelForm form); |
| | | } |