|
@@ -0,0 +1,123 @@
|
|
|
+package com.caimei.modules.user.entity;
|
|
|
+
|
|
|
+import com.thinkgem.jeesite.common.persistence.DataEntity;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 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 Date accessTime; //访问时间
|
|
|
+ private String accessDuration; //访问时长
|
|
|
+ private String accessDate; //访问日期
|
|
|
+
|
|
|
+ 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 Date getAccessTime() {
|
|
|
+ return accessTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAccessTime(Date 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;
|
|
|
+ }
|
|
|
+}
|