1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.moral.service;
|
| import javax.validation.constraints.NotNull;
| import java.util.List;
| import java.util.Map;
|
| /**
| * @Auther: fengxiang
| * @Date: 2018/8/24 10:30
| * @Description: 国控api服务接口
| */
| public interface HangzhouAqiService {
| public List<Map<String, Object>> queryAqi24Hours(@NotNull Integer orgId);
|
| public Integer queryCityCode(@NotNull Integer areaCode);
|
| List<Map<String, Object>> getAreaAvgDataByAreaCode(Map<String, Object> parameters) throws Exception;
|
| }
|
|