MyOrderListBean.java 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. package com.edufound.reader.bean;
  2. public class MyOrderListBean {
  3. private int addDays;
  4. private String channel;
  5. private long gmtCreated;
  6. private long gmtModified;
  7. private String helpUid;
  8. private String orderId;
  9. private String payStatus;
  10. private int price;
  11. private int productId;
  12. private String thirdPartOrderId;
  13. private String title;
  14. private String uid;
  15. private String voucherAmount;
  16. public int getAddDays() {
  17. return addDays;
  18. }
  19. public void setAddDays(int addDays) {
  20. this.addDays = addDays;
  21. }
  22. public String getChannel() {
  23. return channel;
  24. }
  25. public void setChannel(String channel) {
  26. this.channel = channel;
  27. }
  28. public long getGmtCreated() {
  29. return gmtCreated;
  30. }
  31. public void setGmtCreated(long gmtCreated) {
  32. this.gmtCreated = gmtCreated;
  33. }
  34. public long getGmtModified() {
  35. return gmtModified;
  36. }
  37. public void setGmtModified(long gmtModified) {
  38. this.gmtModified = gmtModified;
  39. }
  40. public String getHelpUid() {
  41. return helpUid;
  42. }
  43. public void setHelpUid(String helpUid) {
  44. this.helpUid = helpUid;
  45. }
  46. public String getOrderId() {
  47. return orderId;
  48. }
  49. public void setOrderId(String orderId) {
  50. this.orderId = orderId;
  51. }
  52. public String getPayStatus() {
  53. return payStatus;
  54. }
  55. public void setPayStatus(String payStatus) {
  56. this.payStatus = payStatus;
  57. }
  58. public int getPrice() {
  59. return price;
  60. }
  61. public void setPrice(int price) {
  62. this.price = price;
  63. }
  64. public int getProductId() {
  65. return productId;
  66. }
  67. public void setProductId(int productId) {
  68. this.productId = productId;
  69. }
  70. public String getThirdPartOrderId() {
  71. return thirdPartOrderId;
  72. }
  73. public void setThirdPartOrderId(String thirdPartOrderId) {
  74. this.thirdPartOrderId = thirdPartOrderId;
  75. }
  76. public String getTitle() {
  77. return title;
  78. }
  79. public void setTitle(String title) {
  80. this.title = title;
  81. }
  82. public String getUid() {
  83. return uid;
  84. }
  85. public void setUid(String uid) {
  86. this.uid = uid;
  87. }
  88. public String getVoucherAmount() {
  89. return voucherAmount;
  90. }
  91. public void setVoucherAmount(String voucherAmount) {
  92. this.voucherAmount = voucherAmount;
  93. }
  94. }