1
0

WechatRefundResult.java 1020 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. package com.kmall.common.utils.wechat;
  2. public class WechatRefundResult {
  3. private String return_code;
  4. private String return_msg;
  5. private String appid;
  6. private String mch_id;
  7. private String req_info;
  8. private String nonce_str;
  9. public String getReturn_code() {
  10. return return_code;
  11. }
  12. public void setReturn_code(String return_code) {
  13. this.return_code = return_code;
  14. }
  15. public String getReturn_msg() {
  16. return return_msg;
  17. }
  18. public void setReturn_msg(String return_msg) {
  19. this.return_msg = return_msg;
  20. }
  21. public String getAppid() {
  22. return appid;
  23. }
  24. public void setAppid(String appid) {
  25. this.appid = appid;
  26. }
  27. public String getMch_id() {
  28. return mch_id;
  29. }
  30. public void setMch_id(String mch_id) {
  31. this.mch_id = mch_id;
  32. }
  33. public String getReq_info() {
  34. return req_info;
  35. }
  36. public void setReq_info(String req_info) {
  37. this.req_info = req_info;
  38. }
  39. public String getNonce_str() {
  40. return nonce_str;
  41. }
  42. public void setNonce_str(String nonce_str) {
  43. this.nonce_str = nonce_str;
  44. }
  45. }