-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathNavigateToAppForAuthExtraData.java
More file actions
137 lines (106 loc) · 2.77 KB
/
NavigateToAppForAuthExtraData.java
File metadata and controls
137 lines (106 loc) · 2.77 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
package weixin.popular.bean.vehicle;
import java.util.Map;
import weixin.popular.util.MapUtil;
/**
* <a href=
* "https://pay.weixin.qq.com/wiki/doc/api/pap_sl_jt_v2.php?chapter=20_932&index=10">跳转到小程序/H5/APP,用户授权/开通接口api</a>
*
* @author around
*
*/
public class NavigateToAppForAuthExtraData {
private String appid;
private String sub_appid;
private String mch_id;
private String sub_mch_id;
private String nonce_str;
private String sign_type = "HMAC-SHA256";
private String sign;
private String openid;
private String sub_openid;
private String trade_scene;
private String plate_number;
private String material_info;
private String channel_type;
public final String getAppid() {
return appid;
}
public final void setAppid(String appid) {
this.appid = appid;
}
public final String getSub_appid() {
return sub_appid;
}
public final void setSub_appid(String sub_appid) {
this.sub_appid = sub_appid;
}
public final String getMch_id() {
return mch_id;
}
public final void setMch_id(String mch_id) {
this.mch_id = mch_id;
}
public final String getSub_mch_id() {
return sub_mch_id;
}
public final void setSub_mch_id(String sub_mch_id) {
this.sub_mch_id = sub_mch_id;
}
public final String getNonce_str() {
return nonce_str;
}
public final void setNonce_str(String nonce_str) {
this.nonce_str = nonce_str;
}
public final String getSign_type() {
return sign_type;
}
public final void setSign_type(String sign_type) {
this.sign_type = sign_type;
}
public final String getSign() {
return sign;
}
public final void setSign(String sign) {
this.sign = sign;
}
public final String getTrade_scene() {
return trade_scene;
}
public final void setTrade_scene(String trade_scene) {
this.trade_scene = trade_scene;
}
public final String getOpenid() {
return openid;
}
public final void setOpenid(String openid) {
this.openid = openid;
}
public final String getSub_openid() {
return sub_openid;
}
public final void setSub_openid(String sub_openid) {
this.sub_openid = sub_openid;
}
public final String getPlate_number() {
return plate_number;
}
public final void setPlate_number(String plate_number) {
this.plate_number = plate_number;
}
public final String getMaterial_info() {
return material_info;
}
public final void setMaterial_info(String material_info) {
this.material_info = material_info;
}
public final String getChannel_type() {
return channel_type;
}
public final void setChannel_type(String channel_type) {
this.channel_type = channel_type;
}
public Map<String,String> toMap(){
return MapUtil.objectToMap(this);
}
}