feat(REQ-3340) - 调整API的请求方式
This commit is contained in:
parent
f534d301d4
commit
cb4e9e5821
@ -104,7 +104,7 @@ public class PrintAdminController implements PrintAdminApi {
|
|||||||
|
|
||||||
@Operation(summary = "查询指定流程实例是否能使用打印")
|
@Operation(summary = "查询指定流程实例是否能使用打印")
|
||||||
@Override
|
@Override
|
||||||
@PostMapping("/template/exists")
|
@GetMapping("/template/exists")
|
||||||
public CommonResponse<Boolean> hasPrintTemplate(@NotBlank(message = "流程实例不能为空") @RequestParam String processInstanceId) {
|
public CommonResponse<Boolean> hasPrintTemplate(@NotBlank(message = "流程实例不能为空") @RequestParam String processInstanceId) {
|
||||||
return CommonResponse.success(bpmnProcessInstanceService.hasPrintTemplate(processInstanceId, null));
|
return CommonResponse.success(bpmnProcessInstanceService.hasPrintTemplate(processInstanceId, null));
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user