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
package com.yanzuoguang.wxxcx.logistics.delivery;
/***
* 更新商户审核结果
*
* @author:heyanou
*/
public class WxLogisticsUpdateBusinessDataReq {
/***
* <p>
* 是否必填:是
* 描述:接口调用凭证
* </p>
*/
private String access_token;
/***
* <p>
* 是否必填:是
* 描述:商户的小程序AppID,即审核商户事件中的 ShopAppID
* </p>
*/
private String shop_app_id;
/***
* <p>
* 是否必填:是
* 描述:商户账户
* </p>
*/
private String biz_id;
/***
* <p>
* 是否必填:是
* 描述:审核结果,0 表示审核通过,其他表示审核失败
* </p>
*/
private String result_code;
/***
* <p>
* 是否必填:否
* 描述:审核错误原因,仅 result_code 不等于 0 时需要设置
* </p>
*/
private String result_msg;
public String getAccess_token() {
return access_token;
}
public void setAccess_token(String access_token) {
this.access_token = access_token;
}
public String getShop_app_id() {
return shop_app_id;
}
public void setShop_app_id(String shop_app_id) {
this.shop_app_id = shop_app_id;
}
public String getBiz_id() {
return biz_id;
}
public void setBiz_id(String biz_id) {
this.biz_id = biz_id;
}
public String getResult_code() {
return result_code;
}
public void setResult_code(String result_code) {
this.result_code = result_code;
}
public String getResult_msg() {
return result_msg;
}
public void setResult_msg(String result_msg) {
this.result_msg = result_msg;
}
}