WechatReverseApiResult.java 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. package com.kmall.common.utils.wechat;
  2. public class WechatReverseApiResult {
  3. private String return_code;//返回状态码
  4. private String return_msg;//返回信息
  5. private String appid;//公众账号ID
  6. private String mch_id;//商户号
  7. private String nonce_str;//随机字符串
  8. private String sign;//签名
  9. private String result_code;//业务结果
  10. private String err_code;//错误代码
  11. private String err_code_des;//错误代码描述
  12. private String recall;//是否需要继续调用撤销,Y-需要,N-不需要
  13. public String getReturn_code() {
  14. return return_code;
  15. }
  16. public void setReturn_code(String return_code) {
  17. this.return_code = return_code;
  18. }
  19. public String getReturn_msg() {
  20. return return_msg;
  21. }
  22. public void setReturn_msg(String return_msg) {
  23. this.return_msg = return_msg;
  24. }
  25. public String getAppid() {
  26. return appid;
  27. }
  28. public void setAppid(String appid) {
  29. this.appid = appid;
  30. }
  31. public String getMch_id() {
  32. return mch_id;
  33. }
  34. public void setMch_id(String mch_id) {
  35. this.mch_id = mch_id;
  36. }
  37. public String getNonce_str() {
  38. return nonce_str;
  39. }
  40. public void setNonce_str(String nonce_str) {
  41. this.nonce_str = nonce_str;
  42. }
  43. public String getSign() {
  44. return sign;
  45. }
  46. public void setSign(String sign) {
  47. this.sign = sign;
  48. }
  49. public String getResult_code() {
  50. return result_code;
  51. }
  52. public void setResult_code(String result_code) {
  53. this.result_code = result_code;
  54. }
  55. public String getErr_code() {
  56. return err_code;
  57. }
  58. public void setErr_code(String err_code) {
  59. this.err_code = err_code;
  60. }
  61. public String getErr_code_des() {
  62. return err_code_des;
  63. }
  64. public void setErr_code_des(String err_code_des) {
  65. this.err_code_des = err_code_des;
  66. }
  67. public String getRecall() {
  68. return recall;
  69. }
  70. public void setRecall(String recall) {
  71. this.recall = recall;
  72. }
  73. }