RefundResData.java 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. package com.tencent.protocol.refund_protocol;
  2. /**
  3. * User: rizenguo
  4. * Date: 2014/10/25
  5. * Time: 16:12
  6. */
  7. public class RefundResData {
  8. //协议层
  9. private String return_code = "";
  10. private String return_msg = "";
  11. //协议返回的具体数据(以下字段在return_code 为SUCCESS 的时候有返回)
  12. private String appid = "";
  13. private String mch_id = "";
  14. private String sub_mch_id = "";
  15. private String device_info = "";
  16. private String nonce_str = "";
  17. private String sign = "";
  18. private String result_code = "";
  19. private String err_code = "";
  20. private String err_code_des = "";
  21. private String transaction_id = "";
  22. private String out_trade_no = "";
  23. private String out_refund_no = "";
  24. private String refund_id = "";
  25. private String refund_fee = "";
  26. private String coupon_refund_fee = "";
  27. public String getReturn_code() {
  28. return return_code;
  29. }
  30. public void setReturn_code(String return_code) {
  31. this.return_code = return_code;
  32. }
  33. public String getReturn_msg() {
  34. return return_msg;
  35. }
  36. public void setReturn_msg(String return_msg) {
  37. this.return_msg = return_msg;
  38. }
  39. public String getAppid() {
  40. return appid;
  41. }
  42. public void setAppid(String appid) {
  43. this.appid = appid;
  44. }
  45. public String getMch_id() {
  46. return mch_id;
  47. }
  48. public void setMch_id(String mch_id) {
  49. this.mch_id = mch_id;
  50. }
  51. public String getSub_mch_id() {
  52. return sub_mch_id;
  53. }
  54. public void setSub_mch_id(String sub_mch_id) {
  55. this.sub_mch_id = sub_mch_id;
  56. }
  57. public String getDevice_info() {
  58. return device_info;
  59. }
  60. public void setDevice_info(String device_info) {
  61. this.device_info = device_info;
  62. }
  63. public String getNonce_str() {
  64. return nonce_str;
  65. }
  66. public void setNonce_str(String nonce_str) {
  67. this.nonce_str = nonce_str;
  68. }
  69. public String getSign() {
  70. return sign;
  71. }
  72. public void setSign(String sign) {
  73. this.sign = sign;
  74. }
  75. public String getResult_code() {
  76. return result_code;
  77. }
  78. public void setResult_code(String result_code) {
  79. this.result_code = result_code;
  80. }
  81. public String getErr_code() {
  82. return err_code;
  83. }
  84. public void setErr_code(String err_code) {
  85. this.err_code = err_code;
  86. }
  87. public String getErr_code_des() {
  88. return err_code_des;
  89. }
  90. public void setErr_code_des(String err_code_des) {
  91. this.err_code_des = err_code_des;
  92. }
  93. public String getTransaction_id() {
  94. return transaction_id;
  95. }
  96. public void setTransaction_id(String transaction_id) {
  97. this.transaction_id = transaction_id;
  98. }
  99. public String getOut_trade_no() {
  100. return out_trade_no;
  101. }
  102. public void setOut_trade_no(String out_trade_no) {
  103. this.out_trade_no = out_trade_no;
  104. }
  105. public String getOut_refund_no() {
  106. return out_refund_no;
  107. }
  108. public void setOut_refund_no(String out_refund_no) {
  109. this.out_refund_no = out_refund_no;
  110. }
  111. public String getRefund_id() {
  112. return refund_id;
  113. }
  114. public void setRefund_id(String refund_id) {
  115. this.refund_id = refund_id;
  116. }
  117. public String getRefund_fee() {
  118. return refund_fee;
  119. }
  120. public void setRefund_fee(String refund_fee) {
  121. this.refund_fee = refund_fee;
  122. }
  123. public String getCoupon_refund_fee() {
  124. return coupon_refund_fee;
  125. }
  126. public void setCoupon_refund_fee(String coupon_refund_fee) {
  127. this.coupon_refund_fee = coupon_refund_fee;
  128. }
  129. }