fix(接口定义): 修复接口参数类型
This commit is contained in:
parent
429cd31531
commit
0c6468946f
|
@ -100,7 +100,7 @@ public class ApiTestCaseController {
|
||||||
}
|
}
|
||||||
|
|
||||||
@PostMapping(value = "/jenkins/run")
|
@PostMapping(value = "/jenkins/run")
|
||||||
public String jenkinsRun(@RequestPart("request") RunCaseRequest request) {
|
public String jenkinsRun(@RequestBody RunCaseRequest request) {
|
||||||
return apiTestCaseService.run(request);
|
return apiTestCaseService.run(request);
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue