A_XP1003.java 962 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 A_XP1003 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String orderNo;//订单号
  13. /**
  14. *订单号
  15. */
  16. public void setOrderNo(String orderNo) {
  17. this.orderNo=orderNo;
  18. }
  19. /**
  20. *订单号
  21. */
  22. public String getOrderNo() {
  23. return this.orderNo;
  24. }
  25. String refundMoney;//退款金额
  26. /**
  27. *退款金额
  28. */
  29. public void setRefundMoney(String refundMoney) {
  30. this.refundMoney=refundMoney;
  31. }
  32. /**
  33. *退款金额
  34. */
  35. public String getRefundMoney() {
  36. return this.refundMoney;
  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. }