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
package com.yanzuoguang.wxxcx.logistics.vo;
import java.util.List;
/***
* 账号列表
*
* @author:heyanou
*/
public class LogisticsAccount {
/**
* <p>快递公司客户编码</p>
*/
private String biz_id;
/**
* <p>快递公司ID</p>
*/
private String delivery_id;
/**
* <p>账号绑定时间</p>
*/
private Long create_time;
/**
* <p>描述:账号更新时间</p>
*/
private Long update_time;
/***
* <p>
* 描述:绑定状态
* 0 绑定成功
* 1 审核中
* 2 绑定失败
* 3 已解绑
* </p>
*/
private int status_code;
/**
* <p>描述:账号别名</p>
*/
private String alias;
/**
* <p>描述:账号绑定失败的错误信息(EMS审核结果)</p>
*/
private String remark_wrong_msg;
/**
* <p>描述:账号绑定时的备注内容(提交 EMS 审核需要)</p>
*/
private String remark_content;
/**
* <p>描述:电子面单余额</p>
*/
private double quota_num;
/**
* <p>描述:电子面单余额更新时间</p>
*/
private Long quota_update_time;
/**
* <p>描述:该绑定帐号支持的服务类型</p>
*/
private List<LogisticsService> service_type;
public String getBiz_id() {
return biz_id;
}
public void setBiz_id(String biz_id) {
this.biz_id = biz_id;
}
public String getDelivery_id() {
return delivery_id;
}
public void setDelivery_id(String delivery_id) {
this.delivery_id = delivery_id;
}
public Long getCreate_time() {
return create_time;
}
public void setCreate_time(Long create_time) {
this.create_time = create_time;
}
public Long getUpdate_time() {
return update_time;
}
public void setUpdate_time(Long update_time) {
this.update_time = update_time;
}
public int getStatus_code() {
return status_code;
}
public void setStatus_code(int status_code) {
this.status_code = status_code;
}
public String getAlias() {
return alias;
}
public void setAlias(String alias) {
this.alias = alias;
}
public String getRemark_wrong_msg() {
return remark_wrong_msg;
}
public void setRemark_wrong_msg(String remark_wrong_msg) {
this.remark_wrong_msg = remark_wrong_msg;
}
public String getRemark_content() {
return remark_content;
}
public void setRemark_content(String remark_content) {
this.remark_content = remark_content;
}
public double getQuota_num() {
return quota_num;
}
public void setQuota_num(double quota_num) {
this.quota_num = quota_num;
}
public Long getQuota_update_time() {
return quota_update_time;
}
public void setQuota_update_time(Long quota_update_time) {
this.quota_update_time = quota_update_time;
}
public List<LogisticsService> getService_type() {
return service_type;
}
public void setService_type(List<LogisticsService> service_type) {
this.service_type = service_type;
}
}