|
@@ -0,0 +1,251 @@
|
|
|
+package com.caimei.modules.user.entity;
|
|
|
+
|
|
|
+import com.alibaba.fastjson.annotation.JSONField;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import com.thinkgem.jeesite.common.persistence.DataEntity;
|
|
|
+import lombok.Data;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Description
|
|
|
+ *
|
|
|
+ * @author : Charles
|
|
|
+ * @date : 2022/11/1
|
|
|
+ */
|
|
|
+public class CmBehaviorRecord extends DataEntity<CmBehaviorRecord> {
|
|
|
+ private Integer recordID ;
|
|
|
+ private String IP; //访问人IP地址
|
|
|
+ private Integer userID; //用户id、0为游客
|
|
|
+ private String pagePath; //页面路径
|
|
|
+ private String pageType; //页面类型
|
|
|
+ private String pageLabel; //页面标签
|
|
|
+ private String productImage; //商品图片
|
|
|
+ private Integer productID; //商品ID
|
|
|
+ private String productName; //商品名称
|
|
|
+ private String accessTime; //访问时间
|
|
|
+ private String accessDuration; //访问时长
|
|
|
+ private String accessDate; //访问日期
|
|
|
+
|
|
|
+ private Integer numbers; //访问页面总数
|
|
|
+ private String userIdentity; //公司类型
|
|
|
+
|
|
|
+ private String name; // 机构公司名称
|
|
|
+ private String linkMan; //机构联系人
|
|
|
+ private String contractMobile; //联系手机
|
|
|
+
|
|
|
+ private String sname; // 供应商公司名称
|
|
|
+ private String slinkMan; //供应商联系人
|
|
|
+ private String scontractMobile; //联系手机
|
|
|
+ private String spName; // 协销名称
|
|
|
+ private String startTime; //开始时间
|
|
|
+ private String endTime; //结束时间
|
|
|
+
|
|
|
+ private Integer shopID; // 供应商ID
|
|
|
+
|
|
|
+ private String pageTypes; //页面类型下拉
|
|
|
+
|
|
|
+
|
|
|
+ public Integer getRecordID() {
|
|
|
+ return recordID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRecordID(Integer recordID) {
|
|
|
+ this.recordID = recordID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getIP() {
|
|
|
+ return IP;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIP(String IP) {
|
|
|
+ this.IP = IP;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getUserID() {
|
|
|
+ return userID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUserID(Integer userID) {
|
|
|
+ this.userID = userID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPagePath() {
|
|
|
+ return pagePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPagePath(String pagePath) {
|
|
|
+ this.pagePath = pagePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPageType() {
|
|
|
+ return pageType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPageType(String pageType) {
|
|
|
+ this.pageType = pageType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPageLabel() {
|
|
|
+ return pageLabel;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPageLabel(String pageLabel) {
|
|
|
+ this.pageLabel = pageLabel;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProductImage() {
|
|
|
+ return productImage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProductImage(String productImage) {
|
|
|
+ this.productImage = productImage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getProductID() {
|
|
|
+ return productID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProductID(Integer productID) {
|
|
|
+ this.productID = productID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProductName() {
|
|
|
+ return productName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProductName(String productName) {
|
|
|
+ this.productName = productName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAccessTime() {
|
|
|
+ return accessTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAccessTime(String accessTime) {
|
|
|
+ this.accessTime = accessTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAccessDuration() {
|
|
|
+ return accessDuration;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAccessDuration(String accessDuration) {
|
|
|
+ this.accessDuration = accessDuration;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAccessDate() {
|
|
|
+ return accessDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAccessDate(String accessDate) {
|
|
|
+ this.accessDate = accessDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getNumbers() {
|
|
|
+ return numbers;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNumbers(Integer numbers) {
|
|
|
+ this.numbers = numbers;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUserIdentity() {
|
|
|
+ return userIdentity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUserIdentity(String userIdentity) {
|
|
|
+ this.userIdentity = userIdentity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getName() {
|
|
|
+ return name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setName(String name) {
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLinkMan() {
|
|
|
+ return linkMan;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLinkMan(String linkMan) {
|
|
|
+ this.linkMan = linkMan;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getContractMobile() {
|
|
|
+ return contractMobile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setContractMobile(String contractMobile) {
|
|
|
+ this.contractMobile = contractMobile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSname() {
|
|
|
+ return sname;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSname(String sname) {
|
|
|
+ this.sname = sname;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSlinkMan() {
|
|
|
+ return slinkMan;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSlinkMan(String slinkMan) {
|
|
|
+ this.slinkMan = slinkMan;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getScontractMobile() {
|
|
|
+ return scontractMobile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setScontractMobile(String scontractMobile) {
|
|
|
+ this.scontractMobile = scontractMobile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSpName() {
|
|
|
+ return spName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSpName(String spName) {
|
|
|
+ this.spName = spName;
|
|
|
+ }
|
|
|
+
|
|
|
+ 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 getShopID() {
|
|
|
+ return shopID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setShopID(Integer shopID) {
|
|
|
+ this.shopID = shopID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPageTypes() {
|
|
|
+ return pageTypes;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPageTypes(String pageTypes) {
|
|
|
+ this.pageTypes = pageTypes;
|
|
|
+ }
|
|
|
+}
|