Merge remote-tracking branch 'origin/master'
对比新文件 |
| | |
| | | /iailab-module-ai/ |
| | | /*/*/target/ |
| | | /.idea/ |
| | | /derby.log |
| | | /iailab-plat.iml |
| | | /.flattened-pom.xml |
| | | /*/.flattened-pom.xml |
| | | /*/*/.flattened-pom.xml |
| | | /*/replay_pid15548.log |
| | | /logs/ |
| | | /*/*/*.iml |
文件名从 iailab-module-data/iailab-module-data-biz/src/main/java/com/iailab/module/data/api/controller/DataController.java 修改 |
| | |
| | | @RestController |
| | | @RequestMapping("/api/data") |
| | | @Tag(name = "数据") |
| | | public class DataController { |
| | | public class ApiDataController { |
| | | |
| | | @Resource |
| | | private DaPointService daPointService; |
文件名从 iailab-module-data/iailab-module-data-biz/src/main/java/com/iailab/module/data/api/controller/IndItemController.java 修改 |
| | |
| | | @RestController |
| | | @RequestMapping("/api/data/ind-item") |
| | | @Tag(name = "指标") |
| | | public class IndItemController { |
| | | public class ApiIndItemController { |
| | | |
| | | @Autowired |
| | | private IndItemCollector indItemCollector; |
| | |
| | | # password: 123456 # 密码,建议生产环境开启 |
| | | |
| | | influx-db: |
| | | org: IAILab |
| | | bucket: whs_data |
| | | token: gxhXM4H1VOBv07kYXKWyPag_zJ8_oChP4ooZ3u-BkSae9LS8R1wWzJYlmUjL3Qe9t1hDU3DtoYD5HTgjWoTGOg== |
| | | url: http://localhost:8086 |
| | | org: iailab |
| | | bucket: iailab_data |
| | | token: 2_wr57sVbZQx2QHhN3wWNGOCOtPan_NdCu06NsCGcB8G7rjhjK3yHcLf3uTXE9xkjHHSQwo37E1Mxa0367qXgg== |
| | | url: http://172.16.8.200:8086 |
| | | username: root |
| | | password: iailab12345678 |
| | | |
| | | iems: |
| | | upload-dir: D:/DLUT/upload/ |
| | |
| | | token: FLkSbhpYgPrMJBNnOdmxuY3YcG8D_roPtdGPEhwXW9JSxJkEPe1sXUkrYgWcV-nOL9Zjm09RoTfMW44NoRYaXA== |
| | | url: http://192.168.55.180:8086 |
| | | username: root |
| | | password: ntt12345678 |
| | | password: iailab12345678 |
| | | |
| | | iems: |
| | | upload-dir: C:/DLUT/upload/ |
| | |
| | | password: 123456 # 密码,建议生产环境开启 |
| | | |
| | | influx-db: |
| | | org: IAILab |
| | | bucket: whs_data |
| | | token: gxhXM4H1VOBv07kYXKWyPag_zJ8_oChP4ooZ3u-BkSae9LS8R1wWzJYlmUjL3Qe9t1hDU3DtoYD5HTgjWoTGOg== |
| | | url: http://172.16.8.100:8086 |
| | | org: iailab |
| | | bucket: buk_shasteel |
| | | token: Q2qsriQG3FEfZ35lik1KSkFToma3bsgfQLwJrNQfSK06MC569sZ9mrQ0vLtsVYn70HMfQcC9gf_yUG16JQtm8w== |
| | | url: http://172.16.8.200:8086 |
| | | username: root |
| | | password: iailab12345678 |
| | | |
| | | iems: |
| | | upload-dir: D:/DLUT/upload/ |
| | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | | import java.util.Date; |
| | | import java.util.Map; |
| | | |
| | |
| | | @Data |
| | | public class MdkScheduleReqDTO { |
| | | |
| | | @Schema(description = "调度方案编号") |
| | | @NotNull(message="调度方案编号不能为空") |
| | | private String scheduleCode; |
| | | |
| | | @Schema(description = "调度方案时间") |
| | | @NotNull(message="调度方案时间不能为空") |
| | | private Date scheduleTime; |
| | | |
| | | private String modelCode; |
| | |
| | | Long drtSave = Duration.between(end, endSave).getSeconds(); |
| | | log.info(MessageFormat.format("预测项:{0},保存时间:{1}秒", predictItem.getItemName(), |
| | | drtSave)); |
| | | |
| | | result.put(predictItem.getItemNo(), predictResult); |
| | | } catch (Exception e) { |
| | | e.printStackTrace(); |
| | | log.error(MessageFormat.format("预测项编号:{0},预测项名称:{1},预测失败:{2} 预测时刻:{3}", |