Skip to content

Commit

Permalink
NodeAssignee 新增 extendConfig 扩展属性
Browse files Browse the repository at this point in the history
  • Loading branch information
qmdx committed Jul 25, 2024
1 parent 2ebeb19 commit bcf12ee
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import lombok.Setter;

import java.io.Serializable;
import java.util.Map;

/**
* JSON BPM 分配到任务的人或角色
Expand Down Expand Up @@ -39,6 +40,10 @@ public class NodeAssignee implements Serializable {
* 权重( 用于票签,多个参与者合计权重 100% )
*/
private Integer weight;
/**
* 扩展配置,用于存储头像、等其它信息
*/
private Map<String, Object> extendConfig;

public static NodeAssignee of(FlwTaskActor flwTaskActor) {
NodeAssignee nodeAssignee = new NodeAssignee();
Expand Down

0 comments on commit bcf12ee

Please sign in to comment.