Points.java
2.45 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
package com.huaheng.api.ACS.domain;
import org.apache.commons.lang3.builder.ToStringBuilder;
/**
* @author ricard
* @time 2019/2/26
* 货架实体
*/
public class Points {
//位置编码
private String pointNo;
//x轴
private Integer xpos;
//y轴
private Integer ypos;
//是否可用
private Integer isEnable;
//是否锁定
private Integer isLocked;
//地域id
private Integer areaId;
//货架种类
private Integer shelfType;
private Integer pointProperty;
//货架编码
private String goodsShelfNo;
public String getPointNo() {
return pointNo;
}
public void setPointNo(String pointNo) {
this.pointNo = pointNo;
}
public Integer getXpos() {
return xpos;
}
public void setXpos(Integer xpos) {
this.xpos = xpos;
}
public Integer getYpos() {
return ypos;
}
public void setYpos(Integer ypos) {
this.ypos = ypos;
}
public Integer getIsEnable() {
return isEnable;
}
public void setIsEnable(Integer isEnable) {
this.isEnable = isEnable;
}
public Integer getIsLocked() {
return isLocked;
}
public void setIsLocked(Integer isLocked) {
this.isLocked = isLocked;
}
public Integer getAreaId() {
return areaId;
}
public void setAreaId(Integer areaId) {
this.areaId = areaId;
}
public Integer getShelfType() {
return shelfType;
}
public void setShelfType(Integer shelfType) {
this.shelfType = shelfType;
}
public Integer getPointProperty() {
return pointProperty;
}
public void setPointProperty(Integer pointProperty) {
this.pointProperty = pointProperty;
}
public String getGoodsShelfNo() {
return goodsShelfNo;
}
public void setGoodsShelfNo(String goodsShelfNo) {
this.goodsShelfNo = goodsShelfNo;
}
@Override
public String toString() {
return new ToStringBuilder(this)
.append("pointNo", pointNo)
.append("xpos", xpos)
.append("ypos", ypos)
.append("isEnable", isEnable)
.append("isLocked", isLocked)
.append("areaId", areaId)
.append("shelfType", shelfType)
.append("pointProperty", pointProperty)
.append("goodsShelfNo", goodsShelfNo)
.toString();
}
}