mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2026-03-10 00:13:40 +08:00
Improve prepay API to support all parameters.
This commit is contained in:
@@ -22,6 +22,9 @@ public class WxMpPrepayIdResult implements Serializable {
|
||||
private String result_code;
|
||||
private String prepay_id;
|
||||
private String trade_type;
|
||||
private String err_code;
|
||||
private String err_code_des;
|
||||
private String code_url;
|
||||
|
||||
public String getReturn_code() {
|
||||
return return_code;
|
||||
@@ -94,4 +97,28 @@ public class WxMpPrepayIdResult implements Serializable {
|
||||
public void setTrade_type(String trade_type) {
|
||||
this.trade_type = trade_type;
|
||||
}
|
||||
|
||||
public String getErr_code() {
|
||||
return err_code;
|
||||
}
|
||||
|
||||
public void setErr_code(String err_code) {
|
||||
this.err_code = err_code;
|
||||
}
|
||||
|
||||
public String getErr_code_des() {
|
||||
return err_code_des;
|
||||
}
|
||||
|
||||
public void setErr_code_des(String err_code_des) {
|
||||
this.err_code_des = err_code_des;
|
||||
}
|
||||
|
||||
public String getCode_url() {
|
||||
return code_url;
|
||||
}
|
||||
|
||||
public void setCode_url(String code_url) {
|
||||
this.code_url = code_url;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user