File tree Expand file tree Collapse file tree 3 files changed +55
-0
lines changed
weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/card Expand file tree Collapse file tree 3 files changed +55
-0
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,21 @@ public class CustomCell1 implements Serializable {
33
33
@ SerializedName ("url" )
34
34
private String url ;
35
35
36
+ /**
37
+ * 参考https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1499332673_Unm7V卡券内跳转小程序参数说明:会员卡自定义入口,包含以下两个字段
38
+ */
39
+ /**
40
+ * 自定义入口小程序user_name,格式为原始id+@app.
41
+ */
42
+ @ SerializedName ("app_brand_user_name" )
43
+ private String appBrandUserName ;
44
+ /**
45
+ * 自定义入口小程序的页面路径.
46
+ */
47
+ @ SerializedName ("app_brand_pass" )
48
+ private String appBrandPass ;
49
+
50
+
36
51
@ Override
37
52
public String toString () {
38
53
return WxMpGsonBuilder .create ().toJson (this );
Original file line number Diff line number Diff line change @@ -33,6 +33,22 @@ public class CustomField implements Serializable {
33
33
@ SerializedName ("url" )
34
34
private String url ;
35
35
36
+ /**
37
+ * 参考https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1499332673_Unm7V卡券内跳转小程序参数说明:会员卡顶部的信息类目字段,包含以下两个字段
38
+ */
39
+ /**
40
+ * 自定义信息类目小程序user_name,格式为原始id+@app
41
+ */
42
+ @ SerializedName ("app_brand_user_name" )
43
+ private String appBrandUserName ;
44
+ /**
45
+ * 自定义信息类目小程序的页面路径
46
+ */
47
+ @ SerializedName ("app_brand_pass" )
48
+ private String appBrandPass ;
49
+
50
+
51
+
36
52
public String getNameType () {
37
53
return nameType ;
38
54
}
Original file line number Diff line number Diff line change @@ -157,6 +157,30 @@ public final class MemberCard implements Serializable {
157
157
@ SerializedName ("wx_activate_after_submit_url" )
158
158
private String wxActivateAfterSubmitUrl ;
159
159
160
+ /**
161
+ * 参照https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1499332673_Unm7V卡券内跳转小程序
162
+ */
163
+ /**
164
+ * 积分信息类目对应的小程序 user_name,格式为原始id+@app
165
+ */
166
+ @ SerializedName ("bonus_app_brand_user_name" )
167
+ private String bonusAppBrandUserName ;
168
+ /**
169
+ *积分入口小程序的页面路径
170
+ */
171
+ @ SerializedName ("bonus_app_brand_pass" )
172
+ private String bonusAppBrandPass ;
173
+ /**
174
+ *余额信息类目对应的小程序 user_name,格式为原始id+@app
175
+ */
176
+ @ SerializedName ("balance_app_brand_user_name" )
177
+ private String balanceAppBrandUserName ;
178
+ /**
179
+ *余额入口小程序的页面路径
180
+ */
181
+ @ SerializedName ("balance_app_brand_pass" )
182
+ private String balanceAppBrandPass ;
183
+
160
184
@ Override
161
185
public String toString () {
162
186
return WxMpGsonBuilder .create ().toJson (this );
You can’t perform that action at this time.
0 commit comments