Skip to content

补充推广码信息 #2744

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 21, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ public class WxCpTpPermanentCodeInfo extends WxCpBaseResp {
*/
@SerializedName("auth_user_info")
private AuthUserInfo authUserInfo;

/**
* 推广二维码安装相关信息
*/
@SerializedName("register_code_info")
private RegisterCodeInfo registerCodeInfo;

/**
* 企业当前生效的版本信息
Expand Down Expand Up @@ -278,6 +284,34 @@ public static class AuthUserInfo implements Serializable {
@SerializedName("open_userid")
private String openUserid;
}

/**
* 推广二维码安装相关信息
*/
@Getter
@Setter
public static class RegisterCodeInfo implements Serializable {
private static final long serialVersionUID = -5028321625140879571L;

/**
* 注册码
*/
@SerializedName("register_code")
private String registerCode;

/**
* 推广包ID
*/
@SerializedName("template_id")
private String templateId;

/**
* 仅当获取注册码指定该字段时才返回
*/
@SerializedName("state")
private String state;

}

/**
* 应用对应的权限
Expand Down