Skip to content

Commit

Permalink
🎨 #1559 微信会员卡基本信息更新接口增加跳转小程序相关的几个参数
Browse files Browse the repository at this point in the history
  • Loading branch information
binarywang committed May 12, 2020
1 parent 7ee2772 commit a219035
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -192,13 +192,8 @@ public class BaseInfo implements Serializable {
@SerializedName("need_push_on_view")
private boolean needPushOnView;


/**
* 微信小程序开放功能 小程序&卡券打通部分新增8个字段 https://mp.weixin.qq.com/cgi-bin/announce?action=getannouncement&key=1490190158&version=1&lang=zh_CN&platform=2
* @return
*/

/**
* 自定义使用入口跳转小程序的user_name,格式为原始id+@app
*/
@SerializedName("custom_app_brand_user_name")
Expand Down Expand Up @@ -229,6 +224,16 @@ public class BaseInfo implements Serializable {
@SerializedName("promotion_app_brand_pass")
private String promotionAppBrandPass;

/**
* 小程序的user_name,
*/
@SerializedName("activate_app_brand_user_name")
private String activateAppBrandUserName;
/**
* 激活小程序页面地址
*/
@SerializedName("activate_app_brand_pass")
private String activateAppBrandPass;

/**
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,49 @@ public class BaseInfoUpdate implements Serializable {
@SerializedName("date_info")
private DateInfo dateInfo;

/**
* 微信小程序开放功能 小程序&卡券打通部分新增8个字段 https://mp.weixin.qq.com/cgi-bin/announce?action=getannouncement&key=1490190158&version=1&lang=zh_CN&platform=2
* 自定义使用入口跳转小程序的user_name,格式为原始id+@app
*/
@SerializedName("custom_app_brand_user_name")
private String customAppBrandUserName;
/**
* 自定义使用入口小程序页面地址
*/
@SerializedName("custom_app_brand_pass")
private String customAppBrandPass;
/**
* 小程序的user_name
*/
@SerializedName("center_app_brand_user_name")
private String centerAppBrandUserName;
/**
* 自定义居中使用入口小程序页面地址
*/
@SerializedName("center_app_brand_pass")
private String centerAppBrandPass;
/**
* 小程序的user_name
*/
@SerializedName("promotion_app_brand_user_name")
private String promotionAppBrandUserName;
/**
* 自定义营销入口小程序页面地址
*/
@SerializedName("promotion_app_brand_pass")
private String promotionAppBrandPass;

/**
* 小程序的user_name,
*/
@SerializedName("activate_app_brand_user_name")
private String activateAppBrandUserName;
/**
* 激活小程序页面地址
*/
@SerializedName("activate_app_brand_pass")
private String activateAppBrandPass;

@Override
public String toString() {
return WxMpGsonBuilder.create().toJson(this);
Expand Down

0 comments on commit a219035

Please sign in to comment.