ny
23 小时以前 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package jnpf.flowable.model.candidates;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
 
/**
 * 类的描述
 *
 * @author JNPF@YinMai Info. Co., Ltd
 * @version 5.0.x
 * @since 2024/4/19 10:22
 */
@Data
public class CandidateListModel implements Serializable {
    @Schema(description = "节点编码")
    private String nodeCode;
    @Schema(description = "节点名称")
    private String nodeName;
    @Schema(description = "是否候选人")
    private Boolean isCandidates = false;
    @Schema(description = "是否有候选人")
    private Boolean hasCandidates = false;
    @Schema(description = "已经选择的候选人")
    private String selected;
    @Schema(description = "全部的候选人")
    private List<String> selectIdList = new ArrayList<>();
    @Schema(description = "是否选择分支")
    private Boolean isBranchFlow = false;
}