Points.java
958 Bytes
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
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 goodsShelfNo;
//是否可用
private Integer isEnable;
//货架状态
private Integer isLocked;
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;
}
}