birt
2025-04-13 b0530ed9211230227a8f94e394eda779d5ae5fc1
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
package com.zhitan.model.domain;
 
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.zhitan.common.annotation.Excel;
import com.zhitan.common.core.domain.BaseEntity;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
import java.util.ArrayList;
import java.util.List;
 
/**
 * 模型节点对象 model_node
 *
 * @author fanxinfu
 * @date 2020-02-10
 */
public class ModelNode extends BaseEntity {
  private static final long serialVersionUID = 1L;
 
  /**
   * 主键
   */
  private String nodeId;
 
  /**
   * 编码
   */
  @Excel(name = "编码")
  private String code;
 
  /**
   * 名称
   */
  @Excel(name = "名称")
  private String name;
 
  /**
   * 父节点 id
   */
  private String parentId;
 
  /**
   * 地址
   */
  private String address;
 
  /**
   * 模型 id
   */
  private String modelCode;
 
  private String nodeCategory;
 
  private int orderNum;
 
  @TableField(exist = false)
  private List<ModelNode> children = new ArrayList<>();
 
  public void setNodeId(String nodeId) {
    this.nodeId = nodeId;
  }
 
  public String getNodeId() {
    return nodeId;
  }
 
  public void setCode(String code) {
    this.code = code;
  }
 
  public String getCode() {
    return code;
  }
 
  public void setName(String name) {
    this.name = name;
  }
 
  public String getName() {
    return name;
  }
 
  public void setParentId(String parentId) {
    this.parentId = parentId;
  }
 
  public String getParentId() {
    return parentId;
  }
 
  public void setAddress(String address) {
    this.address = address;
  }
 
  public String getAddress() {
    return address;
  }
 
  @Override
  public String toString() {
    return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
        .append("nodeId", getNodeId())
        .append("code", getCode())
        .append("name", getName())
        .append("parentId", getParentId())
        .append("address", getAddress())
        .append("modelCode", getModelCode())
        .append("orderNum", getOrderNum())
        .toString();
  }
 
  public List<ModelNode> getChildren() {
    return children;
  }
 
  public void setChildren(List<ModelNode> children) {
    this.children = children;
  }
 
  public String getModelCode() {
    return modelCode;
  }
 
  public void setModelCode(String modelCode) {
    this.modelCode = modelCode;
  }
 
  public int getOrderNum() {
    return orderNum;
  }
 
  public void setOrderNum(int orderNum) {
    this.orderNum = orderNum;
  }
 
  public String getNodeCategory() {
    return nodeCategory;
  }
 
  public void setNodeCategory(String nodeCategory) {
    this.nodeCategory = nodeCategory;
  }
}