Node.java
2.32 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
package com.ruoyi.service.domain;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import com.ruoyi.common.annotation.Excel.ColumnType;
/**
* 库房-节点 sys_job
*
* @author ym
*/
public class Node extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** 主键 */
private Long id;
/** 列主键 */
private Long parentId;
/** AB面 */
@Excel(name = "AB面", cellType = ColumnType.STRING)
private String surface;
/** 节编号 */
@Excel(name = "节编号", cellType = ColumnType.NUMERIC)
private int nodeNo;
/** 层编号 */
@Excel(name = "层编号", cellType = ColumnType.NUMERIC)
private int layerNo;
/** 层位号 */
@Excel(name = "层位号", cellType = ColumnType.STRING)
private String layerCode;
/** 库位号 */
@Excel(name = "库位号", cellType = ColumnType.STRING)
private String depotCode;
/** 备注 */
@Excel(name = "备注", cellType = ColumnType.STRING)
private String mark;
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 getSurface() {
return surface;
}
public void setSurface(String surface) {
this.surface = surface;
}
public int getNodeNo() {
return nodeNo;
}
public void setNodeNo(int nodeNo) {
this.nodeNo = nodeNo;
}
public int getLayerNo() {
return layerNo;
}
public void setLayerNo(int layerNo) {
this.layerNo = layerNo;
}
public String getLayerCode() {
return layerCode;
}
public void setLayerCode(String layerCode) {
this.layerCode = layerCode;
}
public String getDepotCode() {
return depotCode;
}
public void setDepotCode(String depotCode) {
this.depotCode = depotCode;
}
public String getMark() {
return mark;
}
public void setMark(String mark) {
this.mark = mark;
}
public String getName() {
return name=depotCode;
}
public void setName(String name) {
this.name = depotCode;
}
}