Points.java
3.67 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
package com.huaheng.pc.config.points.domain;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.huaheng.framework.web.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
/**
* @author ricard
* @time 2019/12/26
* 货架实体
*/
@ApiModel(value="com.huaheng.pc.config.points.domain.Points")
@TableName(value = "points")
public class Points extends BaseEntity {
//id
@TableId(value = "id", type = IdType.AUTO )
private Integer id;
//仓库编码
@TableField(value = "warehouseCode")
private String warehouseCode;
//货架号
@TableField(value = "goodsShelfNo")
private String goodsShelfNo;
private Integer companyId;
//货主
@TableField(value = "companyCode")
private String companyCode;
//货主名称
private String companyName;
//货架调动次数
@TableField(value = "num")
private Integer num;
//是否为空
@TableField(value = "isEmpty")
private Integer isEmpty;
//是否可用
@TableField(value = "isEnable")
private Integer isEnable;
//货架状态
@TableField(value = "isLocked")
private Integer isLocked;
//回库后X轴位置
@TableField(value = "intX")
private String intX;
//回库后Y轴位置
@TableField(value = "intY")
private String intY;
//出库前x位置
@TableField(value = "oIntX")
private String oIntX;
//出库前Y位置
@TableField(value = "oIntY")
private String oIntY;
public Integer getCompanyId() {
return companyId;
}
public void setCompanyId(Integer companyId) {
this.companyId = companyId;
}
public String getCompanyCode() {
return companyCode;
}
public void setCompanyCode(String companyCode) {
this.companyCode = companyCode;
}
public String getCompanyName() {
return companyName;
}
public void setCompanyName(String companyName) {
this.companyName = companyName;
}
public String getoIntX() {
return oIntX;
}
public void setoIntX(String oIntX) {
this.oIntX = oIntX;
}
public String getoIntY() {
return oIntY;
}
public void setoIntY(String oIntY) {
this.oIntY = oIntY;
}
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 Integer getId() {
return id;
}
public void setId(Integer 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;
}
public Integer getNum() {
return num;
}
public void setNum(Integer num) {
this.num = num;
}
public Integer getIsEmpty() {
return isEmpty;
}
public void setIsEmpty(Integer isEmpty) {
this.isEmpty = isEmpty;
}
}