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
package com.yanzuoguang.wxxcx.logistics.account;
/***
* 生成运单
*
* @author:heyanou
*/
public class WxLogisticsBindAccountDataReq {
/***
* <p>
* 是否必填:是
* 描述:接口调用凭证
* </p>
*/
private String access_token;
/***
* <p>
* 是否必填:是
* 描述:bind表示绑定,unbind表示解除绑定
* </p>
*/
private String type;
/***
* <p>
* 是否必填:是
* 描述:快递公司客户编码
* </p>
*/
private String biz_id;
/***
* <p>
* 是否必填:是
* 描述:快递公司ID
* </p>
*/
private String delivery_id;
/***
* <p>
* 是否必填:否
* 描述:快递公司客户密码, ems,顺丰,京东非必填
* </p>
*/
private String password;
/***
* <p>
* 是否必填:否
* 描述:备注内容(提交 EMS 审核需要)
* 格式要求:
* 电话:xxxxx
* 联系人:xxxxx
* 服务类型:xxxxx
* 发货地址:xxxx
* </p>
*/
private String remark_content;
public String getAccess_token() {
return access_token;
}
public void setAccess_token(String access_token) {
this.access_token = access_token;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = 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 String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getRemark_content() {
return remark_content;
}
public void setRemark_content(String remark_content) {
this.remark_content = remark_content;
}
}