ludc
2024-12-05 90c86c95de1d20a3c3a44cab3482388a8c221a5e
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
56
57
package com.vci.dto;
 
import com.vci.common.qt.object.ChildrenInfo;
import com.vci.common.qt.object.ConditionItem;
import com.vci.common.qt.object.LeafInfo;
import lombok.Data;
 
import java.util.Iterator;
import java.util.Map;
 
/**
 * 条件列表传输对象
 * @author yuxc
 * @date 2024/9/4
 */
@Data
public class ConditionItemDTO {
    private String id;
    private LeafInfoDTO leafInfo;
    private ChildrenInfo childrenInfo;
    private boolean leafFlag;
 
    public ConditionItemDTO() {
    }
 
    public String getId() {
        return this.id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public LeafInfoDTO getLeafInfo() {
        return this.leafInfo;
    }
 
    public void setLeafInfo(LeafInfoDTO leafInfo) {
        this.leafInfo = leafInfo;
    }
 
    public ChildrenInfo getChildrenInfo() {
        return this.childrenInfo;
    }
 
    public void setChildrenInfo(ChildrenInfo childrenInfo) {
        this.childrenInfo = childrenInfo;
    }
 
    public boolean isLeaf() {
        return this.leafFlag;
    }
 
    public void setLeafFlag(boolean leafFlag) {
        this.leafFlag = leafFlag;
    }
}