文件名从 iailab-module-data/iailab-module-data-biz/src/main/java/com/iailab/module/data/api/controller/ApiDataController.java 修改 |
| | |
| | | package com.iailab.module.data.api.controller; |
| | | package com.iailab.module.data.api.controller.admin; |
| | | |
| | | import com.iailab.framework.common.pojo.CommonResult; |
| | | import com.iailab.framework.common.util.date.DateUtils; |
| | |
| | | */ |
| | | @Slf4j |
| | | @RestController |
| | | @RequestMapping("/api/data") |
| | | @RequestMapping("/data/api/data") |
| | | @Tag(name = "数据") |
| | | public class ApiDataController { |
| | | |
| | |
| | | @PermitAll |
| | | @PostMapping("/point/history") |
| | | @Operation(summary = "point历史数据") |
| | | public CommonResult<Map<String, List<Map<String, Object>>>> pointHistory(HttpServletResponse response, HttpServletRequest |
| | | request, @RequestBody ApiPointValueQueryDTO queryDto) { |
| | | public CommonResult<Map<String, List<Map<String, Object>>>> pointHistory(@RequestBody ApiPointValueQueryDTO queryDto) { |
| | | try { |
| | | apiSecurityUtils.validate(request); |
| | | Map<String, List<Map<String, Object>>> data = new HashMap<>(); |
| | | if (CollectionUtils.isEmpty(queryDto.getPointNos())) { |
| | | return success(data); |