Region.java
2.12 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
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 Region extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** 主键 */
private Long id;
/** 库主键 */
private Long parentId;
/** 分区编号 */
@Excel(name = "分区编号", cellType = ColumnType.NUMERIC)
private int regionNo;
/** 分区名称 */
@Excel(name = "分区名称", cellType = ColumnType.STRING)
private String regionName;
/** 密集架数量 */
@Excel(name = "密集架数量", cellType = ColumnType.NUMERIC)
private int columnSize;
/** 分区描述 */
@Excel(name = "分区描述", cellType = ColumnType.STRING)
private String mark;
/** 子列 */
private List<Column> columns;
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 int getRegionNo() {
return regionNo;
}
public void setRegionNo(int regionNo) {
this.regionNo = regionNo;
}
public String getRegionName() {
return regionName;
}
public void setRegionName(String regionName) {
this.regionName = regionName;
}
public int getColumnSize() {
return columnSize;
}
public void setColumnSize(int columnSize) {
this.columnSize = columnSize;
}
public String getMark() {
return mark;
}
public void setMark(String mark) {
this.mark = mark;
}
public List<Column> getColumns() {
return columns;
}
public void setColumns(List<Column> columns) {
this.columns = columns;
}
public String getName() {
return name=regionName;
}
public void setName(String name) {
this.name = regionName;
}
}