代码提交

This commit is contained in:
2023-05-24 20:19:45 +08:00
parent 33a52beaad
commit e52099b700
2 changed files with 1 additions and 3 deletions

View File

@@ -95,9 +95,6 @@ public class DevModelController extends BaseController {
@ApiImplicitParam(name = "time", value = "时间", required = true) @ApiImplicitParam(name = "time", value = "时间", required = true)
}) })
public HttpResult<CsDevModelPO> findModel(@RequestParam("devType") String devType,@RequestParam("version") String version,@RequestParam("time") String time){ public HttpResult<CsDevModelPO> 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"); String methodDescribe = getMethodDescribe("findModel");
CsDevModelPO csDevModelPo = csDevModelService.findModel(devType,version,time); CsDevModelPO csDevModelPo = csDevModelService.findModel(devType,version,time);
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, csDevModelPo, methodDescribe); return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, csDevModelPo, methodDescribe);

View File

@@ -26,6 +26,7 @@ public interface ServerInfo {
String PROCESS = "process-boot"; String PROCESS = "process-boot";
String PREPARE_BOOT = "prepare-boot"; String PREPARE_BOOT = "prepare-boot";
String ALGORITHM_BOOT = "algorithm-boot"; String ALGORITHM_BOOT = "algorithm-boot";
String CS_SYSTEM_BOOT = "cs_system_boot";
} }