ConsultOrder.java 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. package com.goafanti.common.model;
  2. import java.util.Date;
  3. public class ConsultOrder {
  4. private Long id;
  5. /**
  6. * 价格
  7. */
  8. private Double price;
  9. /**
  10. * 付款状态 0:未付款 1:已付款
  11. */
  12. private Integer orderState;
  13. /**
  14. * 下单时间
  15. */
  16. private Date orderTime;
  17. /**
  18. * 用户ID 外键
  19. */
  20. private String userId;
  21. /**
  22. * 专家用户ID 外键
  23. */
  24. private String toUserId;
  25. /**
  26. * 支付时间
  27. */
  28. private Date paymentTime;
  29. /**
  30. * 实际支付金额
  31. */
  32. private Double paymentValue;
  33. /**
  34. * 支付方式
  35. */
  36. private String paymentType;
  37. /**
  38. * 支付流水号
  39. */
  40. private String paymentId;
  41. public Long getId() {
  42. return id;
  43. }
  44. public void setId(Long id) {
  45. this.id = id;
  46. }
  47. public Double getPrice() {
  48. return price;
  49. }
  50. public void setPrice(Double price) {
  51. this.price = price;
  52. }
  53. public Integer getOrderState() {
  54. return orderState;
  55. }
  56. public void setOrderState(Integer orderState) {
  57. this.orderState = orderState;
  58. }
  59. public Date getOrderTime() {
  60. return orderTime;
  61. }
  62. public void setOrderTime(Date orderTime) {
  63. this.orderTime = orderTime;
  64. }
  65. public String getUserId() {
  66. return userId;
  67. }
  68. public void setUserId(String userId) {
  69. this.userId = userId;
  70. }
  71. public String getToUserId() {
  72. return toUserId;
  73. }
  74. public void setToUserId(String toUserId) {
  75. this.toUserId = toUserId;
  76. }
  77. public Date getPaymentTime() {
  78. return paymentTime;
  79. }
  80. public void setPaymentTime(Date paymentTime) {
  81. this.paymentTime = paymentTime;
  82. }
  83. public Double getPaymentValue() {
  84. return paymentValue;
  85. }
  86. public void setPaymentValue(Double paymentValue) {
  87. this.paymentValue = paymentValue;
  88. }
  89. public String getPaymentType() {
  90. return paymentType;
  91. }
  92. public void setPaymentType(String paymentType) {
  93. this.paymentType = paymentType;
  94. }
  95. public String getPaymentId() {
  96. return paymentId;
  97. }
  98. public void setPaymentId(String paymentId) {
  99. this.paymentId = paymentId;
  100. }
  101. }