ContainerInfo.java
2.21 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
package com.huaheng.wms.bean;
import org.greenrobot.greendao.annotation.Entity;
import org.greenrobot.greendao.annotation.Generated;
import org.greenrobot.greendao.annotation.Id;
@Entity
public class ContainerInfo {
@Id
private long _id;
private float qty;
private String name;
private int id;
private String locationCode;
private int receiptId;
private String barcode;
@Generated(hash = 1824158883)
public ContainerInfo(long _id, float qty, String name, int id,
String locationCode, int receiptId, String barcode) {
this._id = _id;
this.qty = qty;
this.name = name;
this.id = id;
this.locationCode = locationCode;
this.receiptId = receiptId;
this.barcode = barcode;
}
@Generated(hash = 1700525287)
public ContainerInfo() {
}
public long get_id() {
return this._id;
}
public void set_id(long _id) {
this._id = _id;
}
public float getQty() {
return this.qty;
}
public void setQty(float qty) {
this.qty = qty;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public int getId() {
return this.id;
}
public void setId(int id) {
this.id = id;
}
public String getLocationCode() {
return this.locationCode;
}
public void setLocationCode(String locationCode) {
this.locationCode = locationCode;
}
public int getReceiptId() {
return this.receiptId;
}
public void setReceiptId(int receiptId) {
this.receiptId = receiptId;
}
public String getBarcode() {
return this.barcode;
}
public void setBarcode(String barcode) {
this.barcode = barcode;
}
@Override
public String toString() {
return "ContainerInfo{" +
"_id=" + _id +
", qty=" + qty +
", name='" + name + '\'' +
", id=" + id +
", locationCode='" + locationCode + '\'' +
", receiptId=" + receiptId +
", barcode='" + barcode + '\'' +
'}';
}
}