Matter.java
736 字节
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
package com.ruoyi.flowable.entity;
import lombok.Data;
import java.util.Map;
/**
* @author starsea
* @date 2023-10-12 11:35
*/
@Data
public class Matter {
private String processId;
private String matterName;
private String matterKey;
//事项对应的部门
private String matterDept;
private String businessKey;
// private String startMan;
private Map<String, Object> variables;
private int status;
public Matter(){}
public Matter(String businessKey,String processId,String matterKey, Map<String, Object> variables) {
this.businessKey = businessKey;
this.processId = processId;
this.matterKey = matterKey;
this.variables = variables;
}
}