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
package com.yanzuoguang.wxxcx.logistics.delivery;
import com.yanzuoguang.wxxcx.logistics.vo.LogisticsCustom;
/***
* 配置面单打印员,可以设置多个,若需要使用微信打单 PC 软件,才需要调用。<br>注:面单打印员不需要为小程序项目成员。
*
* @author:heyanou
*/
public class WxLogisticsPreviewTemplateDataReq {
/***
* <p>
* 是否必填:是
* 描述:接口调用凭证
* </p>
*/
private String access_token;
/***
* <p>
* 是否必填:是
* 描述:运单 ID
* </p>
*/
private String waybill_id;
/***
* <p>
* 是否必填:是
* 描述:面单 HTML 模板内容(需经 Base64 编码)
* </p>
*/
private String waybill_template;
/***
* <p>
* 是否必填:是
* 描述:面单数据。详情参考下单事件返回值中的 WaybillData
* </p>
*/
private String waybill_data;
/***
* <p>
* 是否必填:是
* 描述:商户下单数据,格式是商户侧下单 API 中的请求体
* </p>
*/
private LogisticsCustom custom;
public String getAccess_token() {
return access_token;
}
public void setAccess_token(String access_token) {
this.access_token = access_token;
}
public String getWaybill_id() {
return waybill_id;
}
public void setWaybill_id(String waybill_id) {
this.waybill_id = waybill_id;
}
public String getWaybill_template() {
return waybill_template;
}
public void setWaybill_template(String waybill_template) {
this.waybill_template = waybill_template;
}
public String getWaybill_data() {
return waybill_data;
}
public void setWaybill_data(String waybill_data) {
this.waybill_data = waybill_data;
}
public LogisticsCustom getCustom() {
return custom;
}
public void setCustom(LogisticsCustom custom) {
this.custom = custom;
}
}