1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
package cn.wisenergy.chnmuseum.party.model;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import java.io.Serializable;
import java.util.Date;
/**
* <p>
*
* </p>
*
* @author Yang Jianlong
* @since 2018-12-27
*/
@TableName("page_views")
public class PageViews extends Model<PageViews> {
private static final long serialVersionUID = 1L;
/**
* ID
*/
@TableId(value = "id", type = IdType.UUID)
private String id;
/**
* 页面类型:1-业务办理助手2-网点服务地图3-热门产品4-热门活动
*/
private Integer type;
/**
* 页面名称
*/
@TableField("page_name")
private String pageName;
/**
* 页面访问日期(具体到天)
*/
@TableField("view_date")
private Date viewDate;
/**
* 页面访问次数
*/
private Integer times;
@TableField(exist = false)
private String dateType;
@TableField(exist = false)
private Integer totalTimes;
@TableField(exist = false)
private String typeName;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public Integer getType() {
return type;
}
public void setType(Integer type) {
this.type = type;
}
public String getPageName() {
return pageName;
}
public void setPageName(String pageName) {
this.pageName = pageName;
}
public Date getViewDate() {
return viewDate;
}
public void setViewDate(Date viewDate) {
this.viewDate = viewDate;
}
public Integer getTimes() {
return times;
}
public void setTimes(Integer times) {
this.times = times;
}
public String getDateType() {
return dateType;
}
public void setDateType(String dateType) {
this.dateType = dateType;
}
public Integer getTotalTimes() {
return totalTimes;
}
public void setTotalTimes(Integer totalTimes) {
this.totalTimes = totalTimes;
}
public String getTypeName() {
return typeName;
}
public void setTypeName(String typeName) {
this.typeName = typeName;
}
@Override
protected Serializable pkVal() {
return this.id;
}
@Override
public String toString() {
return "PageViews{" +
", id=" + id +
", type=" + type +
", pageName=" + pageName +
", viewDate=" + viewDate +
", times=" + times +
"}";
}
}