ny
昨天 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
34
35
36
37
package jnpf.flowable.model.templatenode.nodejson;
 
import io.swagger.v3.oas.annotations.media.Schema;
import jnpf.flowable.enums.PrintEnum;
import lombok.Data;
 
import java.util.ArrayList;
import java.util.List;
 
@Data
public class PrintConfig {
    /**
     * 开启打印
     */
    @Schema(description = "开启打印")
    private Boolean on = false;
    /**
     * 模板
     */
    @Schema(description = "模板")
    private List<String> printIds = new ArrayList<>();
    /**
     * 1:不限制  2:节点结束  3:流程结束  4:条件设置
     */
    @Schema(description = "打印配置")
    private Integer conditionType = PrintEnum.none.getCode();
    /**
     * 条件设置
     */
    @Schema(description = "条件设置")
    private List<ProperCond> conditions = new ArrayList<>();
    /**
     * 逻辑
     */
    @Schema(description = "逻辑")
    private String matchLogic = "and";
}