BackgroundDataView.java 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. package com.cyksj.model.views;
  2. import com.cyksj.model.entity.*;
  3. import lombok.Getter;
  4. import lombok.Setter;
  5. import java.math.BigDecimal;
  6. import java.util.List;
  7. /*
  8. *项目名: netflix
  9. *文件名: NetflixDataViews
  10. *创建者: JavaZou
  11. *创建时间:2022/10/17 14:09
  12. * 数据统计展示类
  13. */
  14. @Setter
  15. @Getter
  16. public class BackgroundDataView {
  17. /**
  18. * 今日访问数
  19. */
  20. private Integer activeNumOfUser;
  21. /**
  22. * 总下单用户数
  23. */
  24. private Integer totalNumOfUser;
  25. /**
  26. * 总订单数
  27. */
  28. private Integer totalNumOfOrder;
  29. /**
  30. * 总订单金额
  31. */
  32. private BigDecimal totalOrderAmount;
  33. /**
  34. * 退款单数
  35. */
  36. private Integer totalNumOfRefundOrder;
  37. /**
  38. * 退款金额
  39. */
  40. private BigDecimal totalRefundAmount;
  41. /**
  42. * 退款余额
  43. */
  44. private BigDecimal totalRefundBalance;
  45. /**
  46. * 近5天将要到期的主账号总数
  47. */
  48. private Integer totalNumOfWillExpireAccount;
  49. /**
  50. * 已到期主账号总数
  51. */
  52. private Integer totalExpiredAccountNum;
  53. /**
  54. * 虚拟订单数
  55. */
  56. private Integer virtualNumOfOrder;
  57. /**
  58. * 虚拟订单金额
  59. */
  60. private BigDecimal virtualAccountOfOrder;
  61. /**
  62. * 实物订单数
  63. */
  64. private Integer realGoodsNumOfOrder;
  65. /**
  66. * 实物订单金额
  67. */
  68. private BigDecimal realGoodsAccountOfOrder;
  69. /**
  70. * 潮玩好物订单数
  71. */
  72. private Integer fashionNumOfOrder;
  73. /**
  74. * 潮玩好物订单金额
  75. */
  76. private BigDecimal fashionAccountOfOrder;
  77. /**
  78. * 分销单数
  79. */
  80. private Integer distributeOrders;
  81. /**
  82. * 固定推广者分销单数
  83. */
  84. private Integer distributePopularizeOrders;
  85. /**
  86. * 普通分销单数
  87. */
  88. private Integer distributeOriginalOrders;
  89. /**
  90. * 固定推广者分销金额
  91. */
  92. private BigDecimal distributePopularizeMoney;
  93. /**
  94. * 普通分销金额
  95. */
  96. private BigDecimal distributeOriginalMoney;
  97. /**
  98. * 已提现分销金额
  99. */
  100. private BigDecimal distributeGotMoney;
  101. /**
  102. * 待审核提现分销金额
  103. */
  104. private BigDecimal distributeVerifyingMoney;
  105. /**
  106. * 待注册账号数
  107. */
  108. private Integer waitingRegisterNum;
  109. /**
  110. * 注册失败账号数
  111. */
  112. private Integer failRegisterNum;
  113. /**
  114. * apple one数据
  115. */
  116. private List<AppleOneData> appleOneDataViews;
  117. /**
  118. * 流媒体账号数据
  119. */
  120. private List<StreamingAccountData> streamAccountDataViews;
  121. /**
  122. * 实物数据
  123. */
  124. private List<RealGoodsData> realGoodsDataViews;
  125. /**
  126. * 潮玩好物数据
  127. */
  128. private List<StatisticsFashionGoodsData> fashionGoodsDataViews;
  129. /**
  130. * 注册账号数据
  131. */
  132. private List<RegisterAccountData> registerAccountDataViews;
  133. /**
  134. * netflix月付车队数
  135. */
  136. private Integer numOfMonthNetflix;
  137. /**
  138. * 空车位数
  139. */
  140. private Integer numOfMonthEmptyRelationNetflix;
  141. /**
  142. * 空车队数
  143. */
  144. private Integer numOfMonthEmptyTripsNetflix;
  145. /**
  146. * 待发货实物订单
  147. */
  148. private Integer waitingSendRealOrder;
  149. /**
  150. * 已使用余额
  151. */
  152. private BigDecimal usedBalance;
  153. /**
  154. * 剩余余额
  155. */
  156. private BigDecimal remainBalance;
  157. /**
  158. * 店铺数量
  159. */
  160. private Integer numOfYhShop;
  161. /**
  162. * 小店注册人数
  163. */
  164. private Integer numOfYhShopRegisterUser;
  165. /**
  166. * 店铺销售单数
  167. */
  168. private Integer numOfYhShopDsOrders;
  169. /**
  170. * 店铺销售金额
  171. */
  172. private BigDecimal yhShopAmount;
  173. /**
  174. * 店铺提成金额
  175. */
  176. private BigDecimal yhShopTakeMoney;
  177. /**
  178. * 私域当日金额
  179. */
  180. private BigDecimal privatelyOrderMoney;
  181. }