ReceiptOrderInfoVo.java 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. package com.caimei.modules.order.entity;
  2. import java.util.List;
  3. /**
  4. * lwt
  5. * 收款详情 关联订单 Vo类
  6. */
  7. public class ReceiptOrderInfoVo {
  8. private String orderNo;
  9. private String orderID;
  10. private String organizeID; //组织id
  11. private String orderAmount;// 订单金额
  12. private String receiptAmount;// 已收金额
  13. private String customerName;//客户名称
  14. private String receiptStatus;//(收款买家)收款状态:1待收款、2部分收款、3已收款
  15. private String orderType;//订单类型 协销订单 0 普通订单 1
  16. private String orderTime;//下单时间
  17. private String relationType; // 关系类型:1返佣订单(返佣款)、2非返佣订单(订单款或者非订单款)
  18. private Integer userID; //订单用户id
  19. //----------------返佣款项 是根据子订单再去关联的主订单
  20. private String shopOrderNo;
  21. private String shopOrderID;
  22. private String shopOrderAmount; //子订单金额
  23. private String shopName; //供应商
  24. private List<ReceiptRecordVo> receiptRecordVo;
  25. private double payableAmount;
  26. private boolean receiptOrderFlag;// 判断订单中抹平的订单是否是和多个订单一起支付的,
  27. private Double shouldPayShopAmount; //应付金额
  28. private Double payedShopAmount; //已付供应商金额
  29. private Double refundsAmount; //已退款供应商金额
  30. public String getOrganizeID() {
  31. return organizeID;
  32. }
  33. public void setOrganizeID(String organizeID) {
  34. this.organizeID = organizeID;
  35. }
  36. public String getOrderNo() {
  37. return orderNo;
  38. }
  39. public void setOrderNo(String orderNo) {
  40. this.orderNo = orderNo;
  41. }
  42. public String getOrderID() {
  43. return orderID;
  44. }
  45. public void setOrderID(String orderID) {
  46. this.orderID = orderID;
  47. }
  48. public String getOrderAmount() {
  49. return orderAmount;
  50. }
  51. public void setOrderAmount(String orderAmount) {
  52. this.orderAmount = orderAmount;
  53. }
  54. public String getReceiptAmount() {
  55. return receiptAmount;
  56. }
  57. public void setReceiptAmount(String receiptAmount) {
  58. this.receiptAmount = receiptAmount;
  59. }
  60. public String getCustomerName() {
  61. return customerName;
  62. }
  63. public void setCustomerName(String customerName) {
  64. this.customerName = customerName;
  65. }
  66. public String getReceiptStatus() {
  67. return receiptStatus;
  68. }
  69. public void setReceiptStatus(String receiptStatus) {
  70. this.receiptStatus = receiptStatus;
  71. }
  72. public String getOrderType() {
  73. return orderType;
  74. }
  75. public void setOrderType(String orderType) {
  76. this.orderType = orderType;
  77. }
  78. public String getOrderTime() {
  79. return orderTime;
  80. }
  81. public void setOrderTime(String orderTime) {
  82. this.orderTime = orderTime;
  83. }
  84. public String getShopOrderNo() {
  85. return shopOrderNo;
  86. }
  87. public void setShopOrderNo(String shopOrderNo) {
  88. this.shopOrderNo = shopOrderNo;
  89. }
  90. public String getShopOrderID() {
  91. return shopOrderID;
  92. }
  93. public void setShopOrderID(String shopOrderID) {
  94. this.shopOrderID = shopOrderID;
  95. }
  96. public String getShopOrderAmount() {
  97. return shopOrderAmount;
  98. }
  99. public void setShopOrderAmount(String shopOrderAmount) {
  100. this.shopOrderAmount = shopOrderAmount;
  101. }
  102. public String getShopName() {
  103. return shopName;
  104. }
  105. public void setShopName(String shopName) {
  106. this.shopName = shopName;
  107. }
  108. public List<ReceiptRecordVo> getReceiptRecordVo() {
  109. return receiptRecordVo;
  110. }
  111. public void setReceiptRecordVo(List<ReceiptRecordVo> receiptRecordVo) {
  112. this.receiptRecordVo = receiptRecordVo;
  113. }
  114. public String getRelationType() {
  115. return relationType;
  116. }
  117. public void setRelationType(String relationType) {
  118. this.relationType = relationType;
  119. }
  120. public double getPayableAmount() {
  121. return payableAmount;
  122. }
  123. public void setPayableAmount(double payableAmount) {
  124. this.payableAmount = payableAmount;
  125. }
  126. public boolean isReceiptOrderFlag() {
  127. return receiptOrderFlag;
  128. }
  129. public void setReceiptOrderFlag(boolean receiptOrderFlag) {
  130. this.receiptOrderFlag = receiptOrderFlag;
  131. }
  132. public Integer getUserID() {
  133. return userID;
  134. }
  135. public void setUserID(Integer userID) {
  136. this.userID = userID;
  137. }
  138. public Double getShouldPayShopAmount() {
  139. return shouldPayShopAmount;
  140. }
  141. public void setShouldPayShopAmount(Double shouldPayShopAmount) {
  142. this.shouldPayShopAmount = shouldPayShopAmount;
  143. }
  144. public Double getPayedShopAmount() {
  145. return payedShopAmount;
  146. }
  147. public void setPayedShopAmount(Double payedShopAmount) {
  148. this.payedShopAmount = payedShopAmount;
  149. }
  150. public Double getRefundsAmount() {
  151. return refundsAmount;
  152. }
  153. public void setRefundsAmount(Double refundsAmount) {
  154. this.refundsAmount = refundsAmount;
  155. }
  156. }