123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- package com.caimei.modules.user.entity;
- import com.thinkgem.jeesite.common.persistence.DataEntity;
- import java.math.BigDecimal;
- import java.util.ArrayList;
- /**
- * Description
- *
- * @author : Charles
- * @date : 2023/2/15
- */
- public class CmPortrait extends DataEntity<CmPortrait> {
- // 机构id
- private Integer clubID;
- // 机构名称
- private String clubName;
- // 日期类别 0日 1月 2半年 3全年
- private Integer dateType;
- // 开始时间
- private String startTime;
- // 结束时间
- private String endTime;
- // 统计类别 0订单 1搜索关键词 2咨询记录 3访问记录 4初始状态
- private Integer type;
- // 时间
- private String accessDate;
- // 订单总量
- private Integer orderTotal;
- // 订单总金额
- private BigDecimal orderTotalAmount;
- // 订单类型值value 订单类型name
- private ArrayList<OrderPortrait> orderPortrait;
- // 搜索关键词总数
- private Integer totalkeywords;
- // 搜索关键词数量
- private ArrayList<Integer> behaviorValue;
- // 搜索关键词
- private ArrayList<String> behaviorType;
- // 咨询记录总数
- private Integer remarksTotal;
- // 咨询记录数
- private ArrayList<Integer> remarksValue;
- // 咨询记录关键词
- private ArrayList<String> remarksType;
- // 访问记录数
- private ArrayList<Integer> pageTypeValue;
- // 访问词
- private ArrayList<String> pageType;
- public Integer getClubID() {
- return clubID;
- }
- public void setClubID(Integer clubID) {
- this.clubID = clubID;
- }
- public String getClubName() {
- return clubName;
- }
- public void setClubName(String clubName) {
- this.clubName = clubName;
- }
- public Integer getDateType() {
- return dateType;
- }
- public void setDateType(Integer dateType) {
- this.dateType = dateType;
- }
- public String getStartTime() {
- return startTime;
- }
- public void setStartTime(String startTime) {
- this.startTime = startTime;
- }
- public String getEndTime() {
- return endTime;
- }
- public void setEndTime(String endTime) {
- this.endTime = endTime;
- }
- public Integer getType() {
- return type;
- }
- public void setType(Integer type) {
- this.type = type;
- }
- public String getAccessDate() {
- return accessDate;
- }
- public void setAccessDate(String accessDate) {
- this.accessDate = accessDate;
- }
- public Integer getOrderTotal() {
- return orderTotal;
- }
- public void setOrderTotal(Integer orderTotal) {
- this.orderTotal = orderTotal;
- }
- public BigDecimal getOrderTotalAmount() {
- return orderTotalAmount;
- }
- public void setOrderTotalAmount(BigDecimal orderTotalAmount) {
- this.orderTotalAmount = orderTotalAmount;
- }
- public ArrayList<OrderPortrait> getOrderPortrait() {
- return orderPortrait;
- }
- public void setOrderPortrait(ArrayList<OrderPortrait> orderPortrait) {
- this.orderPortrait = orderPortrait;
- }
- public Integer getTotalkeywords() {
- return totalkeywords;
- }
- public void setTotalkeywords(Integer totalkeywords) {
- this.totalkeywords = totalkeywords;
- }
- public ArrayList<Integer> getBehaviorValue() {
- return behaviorValue;
- }
- public void setBehaviorValue(ArrayList<Integer> behaviorValue) {
- this.behaviorValue = behaviorValue;
- }
- public ArrayList<String> getBehaviorType() {
- return behaviorType;
- }
- public void setBehaviorType(ArrayList<String> behaviorType) {
- this.behaviorType = behaviorType;
- }
- public Integer getRemarksTotal() {
- return remarksTotal;
- }
- public void setRemarksTotal(Integer remarksTotal) {
- this.remarksTotal = remarksTotal;
- }
- public ArrayList<Integer> getRemarksValue() {
- return remarksValue;
- }
- public void setRemarksValue(ArrayList<Integer> remarksValue) {
- this.remarksValue = remarksValue;
- }
- public ArrayList<String> getRemarksType() {
- return remarksType;
- }
- public void setRemarksType(ArrayList<String> remarksType) {
- this.remarksType = remarksType;
- }
- public ArrayList<Integer> getPageTypeValue() {
- return pageTypeValue;
- }
- public void setPageTypeValue(ArrayList<Integer> pageTypeValue) {
- this.pageTypeValue = pageTypeValue;
- }
- public ArrayList<String> getPageType() {
- return pageType;
- }
- public void setPageType(ArrayList<String> pageType) {
- this.pageType = pageType;
- }
- }
|