CmPortrait.java 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. package com.caimei.modules.user.entity;
  2. import com.thinkgem.jeesite.common.persistence.DataEntity;
  3. import java.math.BigDecimal;
  4. import java.util.ArrayList;
  5. /**
  6. * Description
  7. *
  8. * @author : Charles
  9. * @date : 2023/2/15
  10. */
  11. public class CmPortrait extends DataEntity<CmPortrait> {
  12. // 机构id
  13. private Integer clubID;
  14. // 机构名称
  15. private String clubName;
  16. // 日期类别 0日 1月 2半年 3全年
  17. private Integer dateType;
  18. // 开始时间
  19. private String startTime;
  20. // 结束时间
  21. private String endTime;
  22. // 统计类别 0订单 1搜索关键词 2咨询记录 3访问记录 4初始状态
  23. private Integer type;
  24. // 时间
  25. private String accessDate;
  26. // 订单总量
  27. private Integer orderTotal;
  28. // 订单总金额
  29. private BigDecimal orderTotalAmount;
  30. // 订单类型值value 订单类型name
  31. private ArrayList<OrderPortrait> orderPortrait;
  32. // 搜索关键词总数
  33. private Integer totalkeywords;
  34. // 搜索关键词数量
  35. private ArrayList<Integer> behaviorValue;
  36. // 搜索关键词
  37. private ArrayList<String> behaviorType;
  38. // 咨询记录总数
  39. private Integer remarksTotal;
  40. // 咨询记录数
  41. private ArrayList<Integer> remarksValue;
  42. // 咨询记录关键词
  43. private ArrayList<String> remarksType;
  44. // 访问记录数
  45. private ArrayList<Integer> pageTypeValue;
  46. // 访问词
  47. private ArrayList<String> pageType;
  48. public Integer getClubID() {
  49. return clubID;
  50. }
  51. public void setClubID(Integer clubID) {
  52. this.clubID = clubID;
  53. }
  54. public String getClubName() {
  55. return clubName;
  56. }
  57. public void setClubName(String clubName) {
  58. this.clubName = clubName;
  59. }
  60. public Integer getDateType() {
  61. return dateType;
  62. }
  63. public void setDateType(Integer dateType) {
  64. this.dateType = dateType;
  65. }
  66. public String getStartTime() {
  67. return startTime;
  68. }
  69. public void setStartTime(String startTime) {
  70. this.startTime = startTime;
  71. }
  72. public String getEndTime() {
  73. return endTime;
  74. }
  75. public void setEndTime(String endTime) {
  76. this.endTime = endTime;
  77. }
  78. public Integer getType() {
  79. return type;
  80. }
  81. public void setType(Integer type) {
  82. this.type = type;
  83. }
  84. public String getAccessDate() {
  85. return accessDate;
  86. }
  87. public void setAccessDate(String accessDate) {
  88. this.accessDate = accessDate;
  89. }
  90. public Integer getOrderTotal() {
  91. return orderTotal;
  92. }
  93. public void setOrderTotal(Integer orderTotal) {
  94. this.orderTotal = orderTotal;
  95. }
  96. public BigDecimal getOrderTotalAmount() {
  97. return orderTotalAmount;
  98. }
  99. public void setOrderTotalAmount(BigDecimal orderTotalAmount) {
  100. this.orderTotalAmount = orderTotalAmount;
  101. }
  102. public ArrayList<OrderPortrait> getOrderPortrait() {
  103. return orderPortrait;
  104. }
  105. public void setOrderPortrait(ArrayList<OrderPortrait> orderPortrait) {
  106. this.orderPortrait = orderPortrait;
  107. }
  108. public Integer getTotalkeywords() {
  109. return totalkeywords;
  110. }
  111. public void setTotalkeywords(Integer totalkeywords) {
  112. this.totalkeywords = totalkeywords;
  113. }
  114. public ArrayList<Integer> getBehaviorValue() {
  115. return behaviorValue;
  116. }
  117. public void setBehaviorValue(ArrayList<Integer> behaviorValue) {
  118. this.behaviorValue = behaviorValue;
  119. }
  120. public ArrayList<String> getBehaviorType() {
  121. return behaviorType;
  122. }
  123. public void setBehaviorType(ArrayList<String> behaviorType) {
  124. this.behaviorType = behaviorType;
  125. }
  126. public Integer getRemarksTotal() {
  127. return remarksTotal;
  128. }
  129. public void setRemarksTotal(Integer remarksTotal) {
  130. this.remarksTotal = remarksTotal;
  131. }
  132. public ArrayList<Integer> getRemarksValue() {
  133. return remarksValue;
  134. }
  135. public void setRemarksValue(ArrayList<Integer> remarksValue) {
  136. this.remarksValue = remarksValue;
  137. }
  138. public ArrayList<String> getRemarksType() {
  139. return remarksType;
  140. }
  141. public void setRemarksType(ArrayList<String> remarksType) {
  142. this.remarksType = remarksType;
  143. }
  144. public ArrayList<Integer> getPageTypeValue() {
  145. return pageTypeValue;
  146. }
  147. public void setPageTypeValue(ArrayList<Integer> pageTypeValue) {
  148. this.pageTypeValue = pageTypeValue;
  149. }
  150. public ArrayList<String> getPageType() {
  151. return pageType;
  152. }
  153. public void setPageType(ArrayList<String> pageType) {
  154. this.pageType = pageType;
  155. }
  156. }