Points.java
1.47 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
package com.huaheng.api.ACS.domain;
import org.apache.commons.lang3.builder.ToStringBuilder;
/**
* @author ricard
* @time 2019/2/26
* 货架实体
*/
public class Points {
//id
private int id;
//仓库编码
private String warehouseCode;
//货架号
private String goodsShelfNo;
//是否可用
private Integer isEnable;
//货架状态
private Integer isLocked;
private String intX;
private String intY;
public String getWarehouseCode() {
return warehouseCode;
}
public void setWarehouseCode(String warehouseCode) {
this.warehouseCode = warehouseCode;
}
public String getIntX() {
return intX;
}
public void setIntX(String intX) {
this.intX = intX;
}
public String getIntY() {
return intY;
}
public void setIntY(String intY) {
this.intY = intY;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getGoodsShelfNo() {
return goodsShelfNo;
}
public void setGoodsShelfNo(String goodsShelfNo) {
this.goodsShelfNo = goodsShelfNo;
}
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;
}
}