From ff67476c2840ffb8944bcdcbcf8360dad9c9a7c4 Mon Sep 17 00:00:00 2001 From: ukid Date: Fri, 14 Aug 2015 10:24:23 +0800 Subject: [PATCH 1/2] =?UTF-8?q?1.=E4=BF=AE=E6=94=B9=E6=96=B9=E6=B3=95getJS?= =?UTF-8?q?SDKCallbackData=E4=B8=AD=E7=9A=84=E7=B1=BB=E5=9E=8B=E9=94=99?= =?UTF-8?q?=E8=AF=AF=202.=E4=BF=AE=E6=94=B9=E6=94=AF=E4=BB=98=E7=AD=BE?= =?UTF-8?q?=E5=90=8D=E5=AD=97=E6=AE=B5=E5=90=8D=E7=A7=B0=EF=BC=8C=E6=96=B9?= =?UTF-8?q?=E4=BE=BF=E5=AE=A2=E6=88=B7=E7=AB=AF=E7=9B=B4=E6=8E=A5=E8=B0=83?= =?UTF-8?q?=E7=94=A8=E6=94=AF=E4=BB=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../weixin/mp/api/WxMpServiceImpl.java | 86 +++- .../mp/bean/result/WxMpPayCallback.java | 482 +++++++++--------- 2 files changed, 312 insertions(+), 256 deletions(-) diff --git a/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/api/WxMpServiceImpl.java b/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/api/WxMpServiceImpl.java index d8faae64..6e616284 100644 --- a/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/api/WxMpServiceImpl.java +++ b/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/api/WxMpServiceImpl.java @@ -1,12 +1,20 @@ package me.chanjar.weixin.mp.api; -import com.google.gson.JsonArray; -import com.google.gson.JsonElement; -import com.google.gson.JsonObject; -import com.google.gson.internal.Streams; -import com.google.gson.reflect.TypeToken; -import com.google.gson.stream.JsonReader; -import com.thoughtworks.xstream.XStream; +import java.io.File; +import java.io.IOException; +import java.io.InputStream; +import java.io.StringReader; +import java.security.NoSuchAlgorithmException; +import java.util.ArrayList; +import java.util.Collections; +import java.util.Date; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.SortedMap; +import java.util.TreeMap; +import java.util.UUID; + import me.chanjar.weixin.common.api.WxConsts; import me.chanjar.weixin.common.bean.WxAccessToken; import me.chanjar.weixin.common.bean.WxJsapiSignature; @@ -21,14 +29,53 @@ import me.chanjar.weixin.common.util.StringUtils; import me.chanjar.weixin.common.util.crypto.SHA1; import me.chanjar.weixin.common.util.crypto.WxCryptUtil; import me.chanjar.weixin.common.util.fs.FileUtils; -import me.chanjar.weixin.common.util.http.*; +import me.chanjar.weixin.common.util.http.MediaDownloadRequestExecutor; +import me.chanjar.weixin.common.util.http.MediaUploadRequestExecutor; +import me.chanjar.weixin.common.util.http.RequestExecutor; +import me.chanjar.weixin.common.util.http.SimpleGetRequestExecutor; +import me.chanjar.weixin.common.util.http.SimplePostRequestExecutor; +import me.chanjar.weixin.common.util.http.URIUtil; +import me.chanjar.weixin.common.util.http.Utf8ResponseHandler; import me.chanjar.weixin.common.util.json.GsonHelper; import me.chanjar.weixin.common.util.json.WxGsonBuilder; import me.chanjar.weixin.common.util.xml.XStreamInitializer; -import me.chanjar.weixin.mp.bean.*; -import me.chanjar.weixin.mp.bean.result.*; -import me.chanjar.weixin.mp.util.http.*; +import me.chanjar.weixin.mp.bean.WxMpCustomMessage; +import me.chanjar.weixin.mp.bean.WxMpGroup; +import me.chanjar.weixin.mp.bean.WxMpMassGroupMessage; +import me.chanjar.weixin.mp.bean.WxMpMassNews; +import me.chanjar.weixin.mp.bean.WxMpMassOpenIdsMessage; +import me.chanjar.weixin.mp.bean.WxMpMassVideo; +import me.chanjar.weixin.mp.bean.WxMpMaterial; +import me.chanjar.weixin.mp.bean.WxMpMaterialArticleUpdate; +import me.chanjar.weixin.mp.bean.WxMpMaterialNews; +import me.chanjar.weixin.mp.bean.WxMpSemanticQuery; +import me.chanjar.weixin.mp.bean.WxMpTemplateMessage; +import me.chanjar.weixin.mp.bean.result.WxMpMassSendResult; +import me.chanjar.weixin.mp.bean.result.WxMpMassUploadResult; +import me.chanjar.weixin.mp.bean.result.WxMpMaterialCountResult; +import me.chanjar.weixin.mp.bean.result.WxMpMaterialFileBatchGetResult; +import me.chanjar.weixin.mp.bean.result.WxMpMaterialNewsBatchGetResult; +import me.chanjar.weixin.mp.bean.result.WxMpMaterialUploadResult; +import me.chanjar.weixin.mp.bean.result.WxMpMaterialVideoInfoResult; +import me.chanjar.weixin.mp.bean.result.WxMpOAuth2AccessToken; +import me.chanjar.weixin.mp.bean.result.WxMpPayCallback; +import me.chanjar.weixin.mp.bean.result.WxMpPayResult; +import me.chanjar.weixin.mp.bean.result.WxMpPrepayIdResult; +import me.chanjar.weixin.mp.bean.result.WxMpQrCodeTicket; +import me.chanjar.weixin.mp.bean.result.WxMpSemanticQueryResult; +import me.chanjar.weixin.mp.bean.result.WxMpUser; +import me.chanjar.weixin.mp.bean.result.WxMpUserCumulate; +import me.chanjar.weixin.mp.bean.result.WxMpUserList; +import me.chanjar.weixin.mp.bean.result.WxMpUserSummary; +import me.chanjar.weixin.mp.util.http.MaterialDeleteRequestExecutor; +import me.chanjar.weixin.mp.util.http.MaterialNewsInfoRequestExecutor; +import me.chanjar.weixin.mp.util.http.MaterialUploadRequestExecutor; +import me.chanjar.weixin.mp.util.http.MaterialVideoInfoRequestExecutor; +import me.chanjar.weixin.mp.util.http.MaterialVoiceAndImageDownloadRequestExecutor; +import me.chanjar.weixin.mp.util.http.QrCodeRequestExecutor; import me.chanjar.weixin.mp.util.json.WxMpGsonBuilder; + +import org.apache.commons.codec.digest.DigestUtils; import org.apache.http.Consts; import org.apache.http.HttpHost; import org.apache.http.auth.AuthScope; @@ -47,12 +94,13 @@ import org.apache.http.impl.client.HttpClients; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import java.io.File; -import java.io.IOException; -import java.io.InputStream; -import java.io.StringReader; -import java.security.NoSuchAlgorithmException; -import java.util.*; +import com.google.gson.JsonArray; +import com.google.gson.JsonElement; +import com.google.gson.JsonObject; +import com.google.gson.internal.Streams; +import com.google.gson.reflect.TypeToken; +import com.google.gson.stream.JsonReader; +import com.thoughtworks.xstream.XStream; public class WxMpServiceImpl implements WxMpService { @@ -796,7 +844,7 @@ public class WxMpServiceImpl implements WxMpService { payInfo.put("signType", "MD5"); String finalSign = WxCryptUtil.createSign(payInfo, wxMpConfigStorage.getPartnerKey()); - payInfo.put("sign", finalSign); + payInfo.put("paySign", finalSign); return payInfo; } @@ -846,7 +894,7 @@ public class WxMpServiceImpl implements WxMpService { public WxMpPayCallback getJSSDKCallbackData(String xmlData) { try { XStream xstream = XStreamInitializer.getInstance(); - xstream.alias("xml", WxMpPayResult.class); + xstream.alias("xml", WxMpPayCallback.class); WxMpPayCallback wxMpCallback = (WxMpPayCallback) xstream.fromXML(xmlData); return wxMpCallback; } catch (Exception e){ diff --git a/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/result/WxMpPayCallback.java b/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/result/WxMpPayCallback.java index a65603c4..993ebe4e 100644 --- a/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/result/WxMpPayCallback.java +++ b/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/result/WxMpPayCallback.java @@ -12,249 +12,257 @@ import java.io.Serializable; * @author ukid */ public class WxMpPayCallback implements Serializable { - private String return_code; - private String return_msg; - - private String appid; - private String mch_id; - private String device_info; - private String nonce_str; - private String sign; - private String result_code; - private String err_code; - private String err_code_des; - private String openid; - private String is_subscribe; - private String trade_type; - private String bank_type; - private String total_fee; - private String fee_type; - private String cash_fee; - private String cash_fee_type; - private String coupon_fee; - private String coupon_count; - private String coupon_batch_id_$n; - private String coupon_id_$n; - private String coupon_fee_$n; - private String transaction_id; - private String out_trade_no; - private String attach; - private String time_end; - - public String getReturn_code() { - return return_code; - } - - public String getReturn_msg() { - return return_msg; - } - - public String getAppid() { - return appid; - } - - public String getMch_id() { - return mch_id; - } - - public String getDevice_info() { - return device_info; - } - - public String getNonce_str() { - return nonce_str; - } - - public String getSign() { - return sign; - } - - public String getResult_code() { - return result_code; - } - - public String getErr_code() { - return err_code; - } - - public String getErr_code_des() { - return err_code_des; - } - - public String getOpenid() { - return openid; - } - - public String getIs_subscribe() { - return is_subscribe; - } - - public String getTrade_type() { - return trade_type; - } - - public String getBank_type() { - return bank_type; - } - - public String getTotal_fee() { - return total_fee; - } - - public String getFee_type() { - return fee_type; - } - - public String getCash_fee() { - return cash_fee; - } - - public String getCash_fee_type() { - return cash_fee_type; - } - - public String getCoupon_fee() { - return coupon_fee; - } - - public String getCoupon_count() { - return coupon_count; - } - - public String getCoupon_batch_id_$n() { - return coupon_batch_id_$n; - } - - public String getCoupon_id_$n() { - return coupon_id_$n; - } - - public String getCoupon_fee_$n() { - return coupon_fee_$n; - } - - public String getTransaction_id() { - return transaction_id; - } + private String return_code; + private String return_msg; + + private String appid; + private String mch_id; + private String device_info; + private String nonce_str; + private String sign; + private String result_code; + private String err_code; + private String err_code_des; + private String openid; + private String is_subscribe; + private String trade_type; + private String bank_type; + private String total_fee; + private String fee_type; + private String cash_fee; + private String cash_fee_type; + private String coupon_fee; + private String coupon_count; + private String coupon_batch_id_$n; + private String coupon_id_$n; + private String coupon_fee_$n; + private String transaction_id; + private String out_trade_no; + private String attach; + private String time_end; + + public String getReturn_code() { + return return_code; + } + + public String getReturn_msg() { + return return_msg; + } + + public String getAppid() { + return appid; + } + + public String getMch_id() { + return mch_id; + } + + public String getDevice_info() { + return device_info; + } + + public String getNonce_str() { + return nonce_str; + } + + public String getSign() { + return sign; + } + + public String getResult_code() { + return result_code; + } + + public String getErr_code() { + return err_code; + } + + public String getErr_code_des() { + return err_code_des; + } + + public String getOpenid() { + return openid; + } + + public String getIs_subscribe() { + return is_subscribe; + } + + public String getTrade_type() { + return trade_type; + } + + public String getBank_type() { + return bank_type; + } + + public String getTotal_fee() { + return total_fee; + } + + public String getFee_type() { + return fee_type; + } + + public String getCash_fee() { + return cash_fee; + } + + public String getCash_fee_type() { + return cash_fee_type; + } + + public String getCoupon_fee() { + return coupon_fee; + } + + public String getCoupon_count() { + return coupon_count; + } + + public String getCoupon_batch_id_$n() { + return coupon_batch_id_$n; + } + + public String getCoupon_id_$n() { + return coupon_id_$n; + } + + public String getCoupon_fee_$n() { + return coupon_fee_$n; + } + + public String getTransaction_id() { + return transaction_id; + } - public String getOut_trade_no() { - return out_trade_no; - } + public String getOut_trade_no() { + return out_trade_no; + } - public String getAttach() { - return attach; - } + public String getAttach() { + return attach; + } - public String getTime_end() { - return time_end; - } + public String getTime_end() { + return time_end; + } - public void setReturn_code(String return_code) { - this.return_code = return_code; - } + public void setReturn_code(String return_code) { + this.return_code = return_code; + } - public void setReturn_msg(String return_msg) { - this.return_msg = return_msg; - } + public void setReturn_msg(String return_msg) { + this.return_msg = return_msg; + } - public void setAppid(String appid) { - this.appid = appid; - } + public void setAppid(String appid) { + this.appid = appid; + } - public void setMch_id(String mch_id) { - this.mch_id = mch_id; - } - - public void setDevice_info(String device_info) { - this.device_info = device_info; - } - - public void setNonce_str(String nonce_str) { - this.nonce_str = nonce_str; - } - - public void setSign(String sign) { - this.sign = sign; - } - - public void setResult_code(String result_code) { - this.result_code = result_code; - } - - public void setErr_code(String err_code) { - this.err_code = err_code; - } - - public void setErr_code_des(String err_code_des) { - this.err_code_des = err_code_des; - } - - public void setOpenid(String openid) { - this.openid = openid; - } - - public void setIs_subscribe(String is_subscribe) { - this.is_subscribe = is_subscribe; - } - - public void setTrade_type(String trade_type) { - this.trade_type = trade_type; - } - - public void setBank_type(String bank_type) { - this.bank_type = bank_type; - } - - public void setTotal_fee(String total_fee) { - this.total_fee = total_fee; - } - - public void setFee_type(String fee_type) { - this.fee_type = fee_type; - } - - public void setCash_fee(String cash_fee) { - this.cash_fee = cash_fee; - } - - public void setCash_fee_type(String cash_fee_type) { - this.cash_fee_type = cash_fee_type; - } - - public void setCoupon_fee(String coupon_fee) { - this.coupon_fee = coupon_fee; - } - - public void setCoupon_count(String coupon_count) { - this.coupon_count = coupon_count; - } - - public void setCoupon_batch_id_$n(String coupon_batch_id_$n) { - this.coupon_batch_id_$n = coupon_batch_id_$n; - } - - public void setCoupon_id_$n(String coupon_id_$n) { - this.coupon_id_$n = coupon_id_$n; - } - - public void setCoupon_fee_$n(String coupon_fee_$n) { - this.coupon_fee_$n = coupon_fee_$n; - } - - public void setTransaction_id(String transaction_id) { - this.transaction_id = transaction_id; - } - - public void setOut_trade_no(String out_trade_no) { - this.out_trade_no = out_trade_no; - } - - public void setAttach(String attach) { - this.attach = attach; - } - - public void setTime_end(String time_end) { - this.time_end = time_end; - } + public void setMch_id(String mch_id) { + this.mch_id = mch_id; + } + + public void setDevice_info(String device_info) { + this.device_info = device_info; + } + + public void setNonce_str(String nonce_str) { + this.nonce_str = nonce_str; + } + + public void setSign(String sign) { + this.sign = sign; + } + + public void setResult_code(String result_code) { + this.result_code = result_code; + } + + public void setErr_code(String err_code) { + this.err_code = err_code; + } + + public void setErr_code_des(String err_code_des) { + this.err_code_des = err_code_des; + } + + public void setOpenid(String openid) { + this.openid = openid; + } + + public void setIs_subscribe(String is_subscribe) { + this.is_subscribe = is_subscribe; + } + + public void setTrade_type(String trade_type) { + this.trade_type = trade_type; + } + + public void setBank_type(String bank_type) { + this.bank_type = bank_type; + } + + public void setTotal_fee(String total_fee) { + this.total_fee = total_fee; + } + + public void setFee_type(String fee_type) { + this.fee_type = fee_type; + } + + public void setCash_fee(String cash_fee) { + this.cash_fee = cash_fee; + } + + public void setCash_fee_type(String cash_fee_type) { + this.cash_fee_type = cash_fee_type; + } + + public void setCoupon_fee(String coupon_fee) { + this.coupon_fee = coupon_fee; + } + + public void setCoupon_count(String coupon_count) { + this.coupon_count = coupon_count; + } + + public void setCoupon_batch_id_$n(String coupon_batch_id_$n) { + this.coupon_batch_id_$n = coupon_batch_id_$n; + } + + public void setCoupon_id_$n(String coupon_id_$n) { + this.coupon_id_$n = coupon_id_$n; + } + + public void setCoupon_fee_$n(String coupon_fee_$n) { + this.coupon_fee_$n = coupon_fee_$n; + } + + public void setTransaction_id(String transaction_id) { + this.transaction_id = transaction_id; + } + + public void setOut_trade_no(String out_trade_no) { + this.out_trade_no = out_trade_no; + } + + public void setAttach(String attach) { + this.attach = attach; + } + + public void setTime_end(String time_end) { + this.time_end = time_end; + } + + @Override + public String toString() { + return "WxMpPayCallback [return_code=" + return_code + ", return_msg=" + return_msg + ", appid=" + appid + ", mch_id=" + mch_id + ", device_info=" + device_info + ", nonce_str=" + nonce_str + ", sign=" + sign + ", result_code=" + result_code + ", err_code=" + err_code + + ", err_code_des=" + err_code_des + ", openid=" + openid + ", is_subscribe=" + is_subscribe + ", trade_type=" + trade_type + ", bank_type=" + bank_type + ", total_fee=" + total_fee + ", fee_type=" + fee_type + ", cash_fee=" + cash_fee + ", cash_fee_type=" + + cash_fee_type + ", coupon_fee=" + coupon_fee + ", coupon_count=" + coupon_count + ", coupon_batch_id_$n=" + coupon_batch_id_$n + ", coupon_id_$n=" + coupon_id_$n + ", coupon_fee_$n=" + coupon_fee_$n + ", transaction_id=" + transaction_id + ", out_trade_no=" + + out_trade_no + ", attach=" + attach + ", time_end=" + time_end + "]"; + } } From 6ede883f71659c105b1acfa78f425244b4e068a7 Mon Sep 17 00:00:00 2001 From: ukid Date: Wed, 19 Aug 2015 18:36:06 +0800 Subject: [PATCH 2/2] format with spaces --- .../mp/bean/result/WxMpPayCallback.java | 501 +++++++++--------- 1 file changed, 256 insertions(+), 245 deletions(-) diff --git a/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/result/WxMpPayCallback.java b/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/result/WxMpPayCallback.java index 993ebe4e..18aeda4d 100644 --- a/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/result/WxMpPayCallback.java +++ b/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/result/WxMpPayCallback.java @@ -12,257 +12,268 @@ import java.io.Serializable; * @author ukid */ public class WxMpPayCallback implements Serializable { - private String return_code; - private String return_msg; - - private String appid; - private String mch_id; - private String device_info; - private String nonce_str; - private String sign; - private String result_code; - private String err_code; - private String err_code_des; - private String openid; - private String is_subscribe; - private String trade_type; - private String bank_type; - private String total_fee; - private String fee_type; - private String cash_fee; - private String cash_fee_type; - private String coupon_fee; - private String coupon_count; - private String coupon_batch_id_$n; - private String coupon_id_$n; - private String coupon_fee_$n; - private String transaction_id; - private String out_trade_no; - private String attach; - private String time_end; - - public String getReturn_code() { - return return_code; - } - - public String getReturn_msg() { - return return_msg; - } - - public String getAppid() { - return appid; - } - - public String getMch_id() { - return mch_id; - } - - public String getDevice_info() { - return device_info; - } - - public String getNonce_str() { - return nonce_str; - } - - public String getSign() { - return sign; - } - - public String getResult_code() { - return result_code; - } - - public String getErr_code() { - return err_code; - } - - public String getErr_code_des() { - return err_code_des; - } - - public String getOpenid() { - return openid; - } - - public String getIs_subscribe() { - return is_subscribe; - } - - public String getTrade_type() { - return trade_type; - } - - public String getBank_type() { - return bank_type; - } - - public String getTotal_fee() { - return total_fee; - } - - public String getFee_type() { - return fee_type; - } - - public String getCash_fee() { - return cash_fee; - } - - public String getCash_fee_type() { - return cash_fee_type; - } - - public String getCoupon_fee() { - return coupon_fee; - } - - public String getCoupon_count() { - return coupon_count; - } - - public String getCoupon_batch_id_$n() { - return coupon_batch_id_$n; - } - - public String getCoupon_id_$n() { - return coupon_id_$n; - } - - public String getCoupon_fee_$n() { - return coupon_fee_$n; - } - - public String getTransaction_id() { - return transaction_id; - } + private String return_code; + private String return_msg; + + private String appid; + private String mch_id; + private String device_info; + private String nonce_str; + private String sign; + private String result_code; + private String err_code; + private String err_code_des; + private String openid; + private String is_subscribe; + private String trade_type; + private String bank_type; + private String total_fee; + private String fee_type; + private String cash_fee; + private String cash_fee_type; + private String coupon_fee; + private String coupon_count; + private String coupon_batch_id_$n; + private String coupon_id_$n; + private String coupon_fee_$n; + private String transaction_id; + private String out_trade_no; + private String attach; + private String time_end; + + public String getReturn_code() { + return return_code; + } + + public String getReturn_msg() { + return return_msg; + } + + public String getAppid() { + return appid; + } + + public String getMch_id() { + return mch_id; + } + + public String getDevice_info() { + return device_info; + } + + public String getNonce_str() { + return nonce_str; + } + + public String getSign() { + return sign; + } + + public String getResult_code() { + return result_code; + } + + public String getErr_code() { + return err_code; + } + + public String getErr_code_des() { + return err_code_des; + } + + public String getOpenid() { + return openid; + } + + public String getIs_subscribe() { + return is_subscribe; + } + + public String getTrade_type() { + return trade_type; + } + + public String getBank_type() { + return bank_type; + } + + public String getTotal_fee() { + return total_fee; + } + + public String getFee_type() { + return fee_type; + } + + public String getCash_fee() { + return cash_fee; + } + + public String getCash_fee_type() { + return cash_fee_type; + } + + public String getCoupon_fee() { + return coupon_fee; + } + + public String getCoupon_count() { + return coupon_count; + } + + public String getCoupon_batch_id_$n() { + return coupon_batch_id_$n; + } + + public String getCoupon_id_$n() { + return coupon_id_$n; + } + + public String getCoupon_fee_$n() { + return coupon_fee_$n; + } + + public String getTransaction_id() { + return transaction_id; + } - public String getOut_trade_no() { - return out_trade_no; - } + public String getOut_trade_no() { + return out_trade_no; + } - public String getAttach() { - return attach; - } + public String getAttach() { + return attach; + } - public String getTime_end() { - return time_end; - } + public String getTime_end() { + return time_end; + } - public void setReturn_code(String return_code) { - this.return_code = return_code; - } + public void setReturn_code(String return_code) { + this.return_code = return_code; + } - public void setReturn_msg(String return_msg) { - this.return_msg = return_msg; - } + public void setReturn_msg(String return_msg) { + this.return_msg = return_msg; + } - public void setAppid(String appid) { - this.appid = appid; - } + public void setAppid(String appid) { + this.appid = appid; + } - public void setMch_id(String mch_id) { - this.mch_id = mch_id; - } - - public void setDevice_info(String device_info) { - this.device_info = device_info; - } - - public void setNonce_str(String nonce_str) { - this.nonce_str = nonce_str; - } - - public void setSign(String sign) { - this.sign = sign; - } - - public void setResult_code(String result_code) { - this.result_code = result_code; - } - - public void setErr_code(String err_code) { - this.err_code = err_code; - } - - public void setErr_code_des(String err_code_des) { - this.err_code_des = err_code_des; - } - - public void setOpenid(String openid) { - this.openid = openid; - } - - public void setIs_subscribe(String is_subscribe) { - this.is_subscribe = is_subscribe; - } - - public void setTrade_type(String trade_type) { - this.trade_type = trade_type; - } - - public void setBank_type(String bank_type) { - this.bank_type = bank_type; - } - - public void setTotal_fee(String total_fee) { - this.total_fee = total_fee; - } - - public void setFee_type(String fee_type) { - this.fee_type = fee_type; - } - - public void setCash_fee(String cash_fee) { - this.cash_fee = cash_fee; - } - - public void setCash_fee_type(String cash_fee_type) { - this.cash_fee_type = cash_fee_type; - } - - public void setCoupon_fee(String coupon_fee) { - this.coupon_fee = coupon_fee; - } - - public void setCoupon_count(String coupon_count) { - this.coupon_count = coupon_count; - } - - public void setCoupon_batch_id_$n(String coupon_batch_id_$n) { - this.coupon_batch_id_$n = coupon_batch_id_$n; - } - - public void setCoupon_id_$n(String coupon_id_$n) { - this.coupon_id_$n = coupon_id_$n; - } - - public void setCoupon_fee_$n(String coupon_fee_$n) { - this.coupon_fee_$n = coupon_fee_$n; - } - - public void setTransaction_id(String transaction_id) { - this.transaction_id = transaction_id; - } - - public void setOut_trade_no(String out_trade_no) { - this.out_trade_no = out_trade_no; - } - - public void setAttach(String attach) { - this.attach = attach; - } - - public void setTime_end(String time_end) { - this.time_end = time_end; - } - - @Override - public String toString() { - return "WxMpPayCallback [return_code=" + return_code + ", return_msg=" + return_msg + ", appid=" + appid + ", mch_id=" + mch_id + ", device_info=" + device_info + ", nonce_str=" + nonce_str + ", sign=" + sign + ", result_code=" + result_code + ", err_code=" + err_code - + ", err_code_des=" + err_code_des + ", openid=" + openid + ", is_subscribe=" + is_subscribe + ", trade_type=" + trade_type + ", bank_type=" + bank_type + ", total_fee=" + total_fee + ", fee_type=" + fee_type + ", cash_fee=" + cash_fee + ", cash_fee_type=" - + cash_fee_type + ", coupon_fee=" + coupon_fee + ", coupon_count=" + coupon_count + ", coupon_batch_id_$n=" + coupon_batch_id_$n + ", coupon_id_$n=" + coupon_id_$n + ", coupon_fee_$n=" + coupon_fee_$n + ", transaction_id=" + transaction_id + ", out_trade_no=" - + out_trade_no + ", attach=" + attach + ", time_end=" + time_end + "]"; - } + public void setMch_id(String mch_id) { + this.mch_id = mch_id; + } + + public void setDevice_info(String device_info) { + this.device_info = device_info; + } + + public void setNonce_str(String nonce_str) { + this.nonce_str = nonce_str; + } + + public void setSign(String sign) { + this.sign = sign; + } + + public void setResult_code(String result_code) { + this.result_code = result_code; + } + + public void setErr_code(String err_code) { + this.err_code = err_code; + } + + public void setErr_code_des(String err_code_des) { + this.err_code_des = err_code_des; + } + + public void setOpenid(String openid) { + this.openid = openid; + } + + public void setIs_subscribe(String is_subscribe) { + this.is_subscribe = is_subscribe; + } + + public void setTrade_type(String trade_type) { + this.trade_type = trade_type; + } + + public void setBank_type(String bank_type) { + this.bank_type = bank_type; + } + + public void setTotal_fee(String total_fee) { + this.total_fee = total_fee; + } + + public void setFee_type(String fee_type) { + this.fee_type = fee_type; + } + + public void setCash_fee(String cash_fee) { + this.cash_fee = cash_fee; + } + + public void setCash_fee_type(String cash_fee_type) { + this.cash_fee_type = cash_fee_type; + } + + public void setCoupon_fee(String coupon_fee) { + this.coupon_fee = coupon_fee; + } + + public void setCoupon_count(String coupon_count) { + this.coupon_count = coupon_count; + } + + public void setCoupon_batch_id_$n(String coupon_batch_id_$n) { + this.coupon_batch_id_$n = coupon_batch_id_$n; + } + + public void setCoupon_id_$n(String coupon_id_$n) { + this.coupon_id_$n = coupon_id_$n; + } + + public void setCoupon_fee_$n(String coupon_fee_$n) { + this.coupon_fee_$n = coupon_fee_$n; + } + + public void setTransaction_id(String transaction_id) { + this.transaction_id = transaction_id; + } + + public void setOut_trade_no(String out_trade_no) { + this.out_trade_no = out_trade_no; + } + + public void setAttach(String attach) { + this.attach = attach; + } + + public void setTime_end(String time_end) { + this.time_end = time_end; + } + + @Override + public String toString() { + return "WxMpPayCallback [return_code=" + return_code + ", return_msg=" + + return_msg + ", appid=" + appid + ", mch_id=" + mch_id + + ", device_info=" + device_info + ", nonce_str=" + nonce_str + + ", sign=" + sign + ", result_code=" + result_code + + ", err_code=" + err_code + ", err_code_des=" + err_code_des + + ", openid=" + openid + ", is_subscribe=" + is_subscribe + + ", trade_type=" + trade_type + ", bank_type=" + bank_type + + ", total_fee=" + total_fee + ", fee_type=" + fee_type + + ", cash_fee=" + cash_fee + ", cash_fee_type=" + cash_fee_type + + ", coupon_fee=" + coupon_fee + ", coupon_count=" + + coupon_count + ", coupon_batch_id_$n=" + coupon_batch_id_$n + + ", coupon_id_$n=" + coupon_id_$n + ", coupon_fee_$n=" + + coupon_fee_$n + ", transaction_id=" + transaction_id + + ", out_trade_no=" + out_trade_no + ", attach=" + attach + + ", time_end=" + time_end + "]"; + } }