LocationPosition.java
1.41 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
package com.huaheng.pc.general.location.domain;
import java.util.Date;
public class LocationPosition {
//id
private Integer id;
//仓库编码
private String warehouseCode;
//库位编码
private String locationCode;
//x轴
private String intX;
//y轴
private String intY;
//创建时间
private Date created;
//创建人
private Date createdBy;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getWarehouseCode() {
return warehouseCode;
}
public void setWarehouseCode(String warehouseCode) {
this.warehouseCode = warehouseCode;
}
public String getLocationCode() {
return locationCode;
}
public void setLocationCode(String locationCode) {
this.locationCode = locationCode;
}
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 Date getCreated() {
return created;
}
public void setCreated(Date created) {
this.created = created;
}
public Date getCreatedBy() {
return createdBy;
}
public void setCreatedBy(Date createdBy) {
this.createdBy = createdBy;
}
}