PickPackInfo.java
2.69 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
package com.cjs.site.model.user.pick;
import com.cjs.site.model.BaseInfo;
/**
* 提货封装设置
*
* @author tongxiaochuan
*
*/
public class PickPackInfo extends BaseInfo {
private static final long serialVersionUID = 1L;
private Integer id;
private String otcCode; //藏品代码
private String otcName; //藏品名称
private String packType; //封装方式
private Double packFee; //封装费
private String packStatus; //状态 0:已作废 1:正常
private String trustStatus; //可以申请再托管 0:否 1:是
private String createDate; //创建日期
private String createTime; //创建时间
private String createBy; //创建人
private int currentAmount;
public static long getSerialVersionUID() {
return serialVersionUID;
}
public int getCurrentAmount() {
return currentAmount;
}
public void setCurrentAmount(int currentAmount) {
this.currentAmount = currentAmount;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getOtcCode() {
return otcCode;
}
public void setOtcCode(String otcCode) {
this.otcCode = otcCode;
}
public String getOtcName() {
return otcName;
}
public void setOtcName(String otcName) {
this.otcName = otcName;
}
public String getPackType() {
return packType;
}
public void setPackType(String packType) {
this.packType = packType;
}
public Double getPackFee() {
return packFee;
}
public void setPackFee(Double packFee) {
this.packFee = packFee;
}
public String getPackStatus() {
return packStatus;
}
public void setPackStatus(String packStatus) {
this.packStatus = packStatus;
}
public String getTrustStatus() {
return trustStatus;
}
public void setTrustStatus(String trustStatus) {
this.trustStatus = trustStatus;
}
public String getCreateDate() {
return createDate;
}
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
public String getCreateTime() {
return createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getCreateBy() {
return createBy;
}
public void setCreateBy(String createBy) {
this.createBy = createBy;
}
}