D_XP1001.java 1001 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /**
  2. * 支付服务
  3. */
  4. package com.miniframe.generate.comm.pay;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 支付请求
  9. */
  10. public class D_XP1001 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String return_code;//返回状态码
  13. /**
  14. *返回状态码
  15. */
  16. public void setReturn_code(String return_code) {
  17. this.return_code=return_code;
  18. }
  19. /**
  20. *返回状态码
  21. */
  22. public String getReturn_code() {
  23. return this.return_code;
  24. }
  25. String return_msg;//返回信息
  26. /**
  27. *返回信息
  28. */
  29. public void setReturn_msg(String return_msg) {
  30. this.return_msg=return_msg;
  31. }
  32. /**
  33. *返回信息
  34. */
  35. public String getReturn_msg() {
  36. return this.return_msg;
  37. }
  38. String jsonString;//返回数据
  39. /**
  40. *返回数据
  41. */
  42. public void setJsonString(String jsonString) {
  43. this.jsonString=jsonString;
  44. }
  45. /**
  46. *返回数据
  47. */
  48. public String getJsonString() {
  49. return this.jsonString;
  50. }
  51. }