代码提交

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)
})
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");
CsDevModelPO csDevModelPo = csDevModelService.findModel(devType,version,time);
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, csDevModelPo, methodDescribe);