对比新文件 |
| | |
| | | package com.iailab.module.data.api.point; |
| | | |
| | | import com.iailab.module.data.api.point.dto.*; |
| | | import org.springframework.validation.annotation.Validated; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @author PanZhibao |
| | | * @Description |
| | | * @createTime 2024年09月02日 |
| | | */ |
| | | @RestController // 提供 RESTful API 接口,给 Feign 调用 |
| | | @Validated |
| | | public class DataPointApiImpl implements DataPointApi { |
| | | |
| | | @Override |
| | | public ApiPointDTO getPointByNo(String pointNo) { |
| | | return null; |
| | | } |
| | | |
| | | @Override |
| | | public ApiPointDTO getPointById(String pointId) { |
| | | return null; |
| | | } |
| | | |
| | | @Override |
| | | public Map<String, Object> pointsCurrent(List<String> pointNos) { |
| | | return null; |
| | | } |
| | | |
| | | @Override |
| | | public Map<String, List<Map<String, Object>>> pointsHistory(ApiPointsValueQueryDTO queryDto) { |
| | | return null; |
| | | } |
| | | |
| | | @Override |
| | | public List<ApiPointValueDTO> getValue(ApiPointValueQueryDTO queryDto) { |
| | | return null; |
| | | } |
| | | |
| | | @Override |
| | | public Boolean setValue(ApiPointValueWriteDTO queryDto) { |
| | | return null; |
| | | } |
| | | } |