123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 |
- package com.kmall.common.utils.wechat;
- public class WechatMicropayApiResult {
- private String return_code;//返回状态码
- private String return_msg;//返回信息
- private String appid;//公众账号ID
- 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;//交易类型(MICROPAY 付款码支付)
- private String bank_type;//付款银行
- private String fee_type;//货币类型
- private String total_fee;//订单金额
- private String settlement_total_fee;//应结订单金额
- private String coupon_fee;//代金券金额
- private String cash_fee_type;//现金支付货币类型
- private String cash_fee;//现金支付金额
- private String transaction_id;//微信支付订单号
- private String out_trade_no;//商户订单号
- private String attach;//商家数据包
- private String time_end;//支付完成时间
- /**
- * SUCCESS—支付成功
- REFUND—转入退款
- NOTPAY—未支付
- CLOSED—已关闭
- REVOKED—已撤销(刷卡支付)
- USERPAYING--用户支付中
- PAYERROR--支付失败(其他原因,如银行返回失败)
- */
- private String trade_state;//交易状态
- public String getReturn_code() {
- return return_code;
- }
- public void setReturn_code(String return_code) {
- this.return_code = return_code;
- }
- public String getReturn_msg() {
- return return_msg;
- }
- public void setReturn_msg(String return_msg) {
- this.return_msg = return_msg;
- }
- public String getAppid() {
- return appid;
- }
- public void setAppid(String appid) {
- this.appid = appid;
- }
- public String getMch_id() {
- return mch_id;
- }
- public void setMch_id(String mch_id) {
- this.mch_id = mch_id;
- }
- public String getDevice_info() {
- return device_info;
- }
- public void setDevice_info(String device_info) {
- this.device_info = device_info;
- }
- public String getNonce_str() {
- return nonce_str;
- }
- public void setNonce_str(String nonce_str) {
- this.nonce_str = nonce_str;
- }
- public String getSign() {
- return sign;
- }
- public void setSign(String sign) {
- this.sign = sign;
- }
- public String getResult_code() {
- return result_code;
- }
- public void setResult_code(String result_code) {
- this.result_code = result_code;
- }
- 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 getOpenid() {
- return openid;
- }
- public void setOpenid(String openid) {
- this.openid = openid;
- }
- public String getIs_subscribe() {
- return is_subscribe;
- }
- public void setIs_subscribe(String is_subscribe) {
- this.is_subscribe = is_subscribe;
- }
- public String getTrade_type() {
- return trade_type;
- }
- public void setTrade_type(String trade_type) {
- this.trade_type = trade_type;
- }
- public String getBank_type() {
- return bank_type;
- }
- public void setBank_type(String bank_type) {
- this.bank_type = bank_type;
- }
- public String getFee_type() {
- return fee_type;
- }
- public void setFee_type(String fee_type) {
- this.fee_type = fee_type;
- }
- public String getTotal_fee() {
- return total_fee;
- }
- public void setTotal_fee(String total_fee) {
- this.total_fee = total_fee;
- }
- public String getSettlement_total_fee() {
- return settlement_total_fee;
- }
- public void setSettlement_total_fee(String settlement_total_fee) {
- this.settlement_total_fee = settlement_total_fee;
- }
- public String getCoupon_fee() {
- return coupon_fee;
- }
- public void setCoupon_fee(String coupon_fee) {
- this.coupon_fee = coupon_fee;
- }
- public String getCash_fee_type() {
- return cash_fee_type;
- }
- public void setCash_fee_type(String cash_fee_type) {
- this.cash_fee_type = cash_fee_type;
- }
- public String getCash_fee() {
- return cash_fee;
- }
- public void setCash_fee(String cash_fee) {
- this.cash_fee = cash_fee;
- }
- public String getTransaction_id() {
- return transaction_id;
- }
- public void setTransaction_id(String transaction_id) {
- this.transaction_id = transaction_id;
- }
- public String getOut_trade_no() {
- return out_trade_no;
- }
- public void setOut_trade_no(String out_trade_no) {
- this.out_trade_no = out_trade_no;
- }
- public String getAttach() {
- return attach;
- }
- public void setAttach(String attach) {
- this.attach = attach;
- }
- public String getTime_end() {
- return time_end;
- }
- public void setTime_end(String time_end) {
- this.time_end = time_end;
- }
- public String getTrade_state() {
- return trade_state;
- }
- public void setTrade_state(String trade_state) {
- this.trade_state = trade_state;
- }
- @Override
- public String toString() {
- return "WechatMicropayApiResult{" + "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 + '\'' + ", fee_type='" + fee_type + '\'' + ", total_fee='" + total_fee +
- '\'' + ", settlement_total_fee='" + settlement_total_fee + '\'' + ", coupon_fee='" + coupon_fee + '\'' +
- ", cash_fee_type='" + cash_fee_type + '\'' + ", cash_fee='" + cash_fee + '\'' + ", transaction_id='" +
- transaction_id + '\'' + ", out_trade_no='" + out_trade_no + '\'' + ", attach='" + attach + '\'' +
- ", time_end='" + time_end + '\'' + ", trade_state='" + trade_state + '\'' + '}';
- }
- }
|