baoshiwei
2025-03-12 f1208474f771a1c233d7425c8ed13fbaa0d521ac
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package org.dromara.workflow.domain.bo;
 
import lombok.Data;
 
import java.io.Serial;
import java.io.Serializable;
import java.util.List;
 
/**
 * 流程实例请求对象
 *
 * @author may
 */
@Data
public class FlowInstanceBo implements Serializable {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     * 流程定义名称
     */
    private String flowName;
 
    /**
     * 流程定义编码
     */
    private String flowCode;
 
    /**
     * 任务发起人
     */
    private String startUserId;
 
    /**
     * 业务id
     */
    private String businessId;
 
    /**
     * 流程分类id
     */
    private String category;
 
    /**
     * 任务名称
     */
    private String nodeName;
 
    /**
     * 申请人Ids
     */
    private List<Long> createByIds;
 
}