Skip to content
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 @@ -89,6 +89,24 @@ public class WxPayOrderNotifyResult extends WxPayBaseResult implements Serializa
@XStreamAlias("bank_type")
private String bankType;

/**
* <pre>
* 用户是否关注子公众账号
* String(1)
* Y-关注,N-未关注,仅在公众账号类型支付有效
* </pre>
*/
@XStreamAlias("sub_is_subscribe")
private String subIsSubscribe;

/**
* <pre>
* 用户在子商户appid下的唯一标识
* String(128)
* </pre>
*/
@XStreamAlias("sub_openid")
private String subOpenId;

/**
* <pre>
Expand Down Expand Up @@ -293,6 +311,22 @@ public void setBankType(String bankType) {
this.bankType = bankType;
}

public String getSubIsSubscribe() {
return subIsSubscribe;
}

public void setSubIsSubscribe(String subIsSubscribe) {
this.subIsSubscribe = subIsSubscribe;
}

public String getSubOpenId() {
return subOpenId;
}

public void setSubOpenId(String subOpenId) {
this.subOpenId = subOpenId;
}

public Integer getTotalFee() {
return totalFee;
}
Expand Down