You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
284 B
16 lines
284 B
|
5 months ago
|
package com.nov.KgLowDurable.common;
|
||
|
|
|
||
|
|
import lombok.Data;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
public class Approver {
|
||
|
|
|
||
|
|
private int attr = 1; // 节点审批方式:1-或签;2-会签,仅在节点为多人审批时有效
|
||
|
|
|
||
|
|
private List<String> userid; // 审批人id列表
|
||
|
|
|
||
|
|
}
|
||
|
|
|