|
- package com.simple.pay;
-
- /**
- * Created by Stormeye on 2018/8/10.
- */
- public class WxRefundOrderP {
- private String appid; // 公众账号ID
- private String mch_id; // 商户号
- private String nonce_str; // 随机字符串
- private String sign; // 签名
- private String transaction_id; // 微信订单号
- private String out_trade_no; // 商户订单号
- private String out_refund_no; // 商户退款单号
- private Integer total_fee; // 支付金额
- private Integer refund_fee; // 退款金额
- private String refund_desc; // 退款原因
- private String notify_url; // 回调接口
-
- 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 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 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 getOut_refund_no() {
- return out_refund_no;
- }
-
- public void setOut_refund_no(String out_refund_no) {
- this.out_refund_no = out_refund_no;
- }
-
- public Integer getTotal_fee() {
- return total_fee;
- }
-
- public void setTotal_fee(Integer total_fee) {
- this.total_fee = total_fee;
- }
-
- public Integer getRefund_fee() {
- return refund_fee;
- }
-
- public void setRefund_fee(Integer refund_fee) {
- this.refund_fee = refund_fee;
- }
-
- public String getRefund_desc() {
- return refund_desc;
- }
-
- public void setRefund_desc(String refund_desc) {
- this.refund_desc = refund_desc;
- }
-
- public String getNotify_url() {
- return notify_url;
- }
-
- public void setNotify_url(String notify_url) {
- this.notify_url = notify_url;
- }
-
- @Override
- public String toString() {
- final StringBuilder sb = new StringBuilder("WxRefundOrder{");
- sb.append("appid='").append(appid).append('\'');
- sb.append(", mch_id='").append(mch_id).append('\'');
- sb.append(", nonce_str='").append(nonce_str).append('\'');
- sb.append(", sign='").append(sign).append('\'');
- sb.append(", out_trade_no='").append(out_trade_no).append('\'');
- sb.append(", out_refund_no='").append(out_refund_no).append('\'');
- sb.append(", total_fee=").append(total_fee);
- sb.append(", refund_fee=").append(refund_fee);
- sb.append('}');
- return sb.toString();
- }
- }
|