Column.java
3.87 KB
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
package com.ruoyi.service.domain;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.annotation.Excel.ColumnType;
import com.ruoyi.common.core.domain.BaseEntity;
import java.util.List;
/**
* 库房-列 sys_job
*
* @author ym
*/
public class Column extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** 主键 */
private Long id;
/** 区域主键 */
private Long parentId;
/** 所属区域 */
@Excel(name = "所属区域", cellType = ColumnType.STRING)
private String regionName;
/** 密集架类型 */
@Excel(name = "type", cellType = ColumnType.NUMERIC)
private int type;
/** 单双面 */
@Excel(name = "单双面", cellType = ColumnType.NUMERIC)
private int surfaceType;
/** 列编号 */
@Excel(name = "列编号", cellType = ColumnType.NUMERIC)
private int columnNo;
/** 列名称 */
@Excel(name = "列名称", cellType = ColumnType.STRING)
private String columnName;
/** 列类型 */
@Excel(name = "列类型", cellType = ColumnType.NUMERIC)
private int columnType;
/** 节数 */
@Excel(name = "节数", cellType = ColumnType.NUMERIC)
private int nodeSize;
/** 节长度 */
@Excel(name = "节长度", cellType = ColumnType.NUMERIC)
private int nodeLength;
/** 层数 */
@Excel(name = "层数", cellType = ColumnType.NUMERIC)
private int layerSize;
/** 层高 */
@Excel(name = "层高", cellType = ColumnType.NUMERIC)
private int layerHeight;
/** 备注 */
@Excel(name = "备注", cellType = ColumnType.STRING)
private String mark;
/** 子节点 */
private List<Node> nodes;
private String name;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Long getParentId() {
return parentId;
}
public void setParentId(Long parentId) {
this.parentId = parentId;
}
public String getRegionName() {
return regionName;
}
public void setRegionName(String regionName) {
this.regionName = regionName;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
public int getSurfaceType() {
return surfaceType;
}
public void setSurfaceType(int surfaceType) {
this.surfaceType = surfaceType;
}
public int getColumnNo() {
return columnNo;
}
public void setColumnNo(int columnNo) {
this.columnNo = columnNo;
}
public String getColumnName() {
return columnName;
}
public void setColumnName(String columnName) {
this.columnName = columnName;
}
public int getColumnType() {
return columnType;
}
public void setColumnType(int columnType) {
this.columnType = columnType;
}
public int getNodeSize() {
return nodeSize;
}
public void setNodeSize(int nodeSize) {
this.nodeSize = nodeSize;
}
public int getNodeLength() {
return nodeLength;
}
public void setNodeLength(int nodeLength) {
this.nodeLength = nodeLength;
}
public int getLayerSize() {
return layerSize;
}
public void setLayerSize(int layerSize) {
this.layerSize = layerSize;
}
public int getLayerHeight() {
return layerHeight;
}
public void setLayerHeight(int layerHeight) {
this.layerHeight = layerHeight;
}
public String getMark() {
return mark;
}
public void setMark(String mark) {
this.mark = mark;
}
public List<Node> getNodes() {
return nodes;
}
public void setNodes(List<Node> nodes) {
this.nodes = nodes;
}
public String getName() {
return columnName;
}
public void setName(String name) {
this.name = columnName;
}
}