潘志宝
2024-09-30 73ed35dd4aa01c4f10f890f7a820501fe1d0df38
提交 | 用户 | 时间
60201e 1 package com.iailab.module.data.api.point;
2
3 import com.iailab.module.data.api.point.dto.*;
4 import org.springframework.validation.annotation.Validated;
5 import org.springframework.web.bind.annotation.RestController;
6
7 import java.util.List;
8 import java.util.Map;
9
10 /**
11  * @author PanZhibao
12  * @Description
13  * @createTime 2024年09月02日
14  */
15 @RestController // 提供 RESTful API 接口,给 Feign 调用
16 @Validated
17 public class DataPointApiImpl implements DataPointApi {
18
19     @Override
73ed35 20     public ApiPointDTO getInfoByNo(String pointNo) {
60201e 21         return null;
22     }
23
24     @Override
73ed35 25     public ApiPointDTO getInfoById(String pointId) {
60201e 26         return null;
27     }
28
29     @Override
73ed35 30     public Map<String, Object> queryPointsRealValue(List<String> pointNos) {
60201e 31         return null;
32     }
33
34     @Override
73ed35 35     public Map<String, List<Map<String, Object>>> queryPointsHistoryValue(ApiPointsValueQueryDTO queryDto) {
60201e 36         return null;
37     }
38
39     @Override
73ed35 40     public List<ApiPointValueDTO> queryPointHistoryValue(ApiPointValueQueryDTO queryDto) {
60201e 41         return null;
42     }
43
44     @Override
73ed35 45     public Boolean writePointRealValue(ApiPointValueWriteDTO queryDto) {
60201e 46         return null;
47     }
48 }