bpm:code review 指定审批人

This commit is contained in:
YunaiV
2023-11-19 18:28:00 +08:00
parent 6fd8d0095c
commit 7f75f0abfc
7 changed files with 22 additions and 9 deletions

View File

@ -32,9 +32,14 @@ public class BpmProcessInstanceCreateReqDTO {
@NotEmpty(message = "业务的唯一标识")
private String businessKey;
// TODO @haiassignees 复数
/**
* 提前指派的审批人
* 例如: { taskKey1 :[1,2] },则表示 taskKey1 这个任务,提前设定了,由 userId 为 1,2 的用户进行审批
*
* keytaskKey 任务编码
* value审批人的数组
* 例如: { taskKey1 :[1, 2] },则表示 taskKey1 这个任务,提前设定了,由 userId 为 1,2 的用户进行审批
*/
private Map<String, List<Long>> assignee;
}