diff --git a/pqs-algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/controller/Equipment/DevModelController.java b/pqs-algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/controller/Equipment/DevModelController.java index d42de61c1..209628f4f 100644 --- a/pqs-algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/controller/Equipment/DevModelController.java +++ b/pqs-algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/controller/Equipment/DevModelController.java @@ -95,9 +95,6 @@ public class DevModelController extends BaseController { @ApiImplicitParam(name = "time", value = "时间", required = true) }) public HttpResult findModel(@RequestParam("devType") String devType,@RequestParam("version") String version,@RequestParam("time") String time){ - System.out.println(devType); - System.out.println(version); - System.out.println(time); String methodDescribe = getMethodDescribe("findModel"); CsDevModelPO csDevModelPo = csDevModelService.findModel(devType,version,time); return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, csDevModelPo, methodDescribe); diff --git a/pqs-common/common-core/src/main/java/com/njcn/common/pojo/constant/ServerInfo.java b/pqs-common/common-core/src/main/java/com/njcn/common/pojo/constant/ServerInfo.java index 70b1641ea..4276112ef 100644 --- a/pqs-common/common-core/src/main/java/com/njcn/common/pojo/constant/ServerInfo.java +++ b/pqs-common/common-core/src/main/java/com/njcn/common/pojo/constant/ServerInfo.java @@ -26,6 +26,7 @@ public interface ServerInfo { String PROCESS = "process-boot"; String PREPARE_BOOT = "prepare-boot"; String ALGORITHM_BOOT = "algorithm-boot"; + String CS_SYSTEM_BOOT = "cs_system_boot"; }