update(REQ-2516) - 兼容历史版本处理
This commit is contained in:
parent
e1b2db65ad
commit
7c4fce9c89
@ -62,8 +62,14 @@ public class BpmnProcessActivityController implements ProcessActivityApi {
|
||||
return CommonResponse.success(true);
|
||||
}
|
||||
|
||||
/**
|
||||
* old/trigger 地址是 1.3.3 版本以前的接口,在接入方未完全升级前,都需要保留
|
||||
*
|
||||
* @param triggerId
|
||||
* @return
|
||||
*/
|
||||
@Operation(summary = "业务节点唤醒")
|
||||
@GetMapping("/trigger")
|
||||
@GetMapping({"/trigger", "/old/trigger"})
|
||||
@Override
|
||||
@RepeatSubmit
|
||||
public CommonResponse<Boolean> trigger(@NotBlank(message = "触发 ID 不能为空") @RequestParam String triggerId) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user