YxyTimeCount.java
2.4 KB
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
package com.espeed.pojo;
import java.io.Serializable;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
/**
* 程序名称: EspeedMail_时速邮箱
* 程序版本: V1.0
* 作 者: 深圳市科飞时速网络技术有限公司(0755-88843776)
* 版权所有: 深圳市科飞时速网络技术有限公司
* 技术支持: Tech@21gmail.com
* 单元名称: 营销邮时间统计实体
* 开始时间: 2015.12.29
* 程 序 员: 谢勇
* 最后修改: 2015.12.29
* 备 注: 二次修改
*/
@Entity
@Table(name="timer_count_yxy")
public class YxyTimeCount implements Serializable{
private static final long serialVersionUID = 1L;
private int timer_id;//主键id
private int year;//年份
private String month;//月份
private String day;//日份
private int day_count;//日份对应的统计值
private int count_id;//统计类型的id
private String record_id;//保存满足的记录id
private String count_date;//统计的日期
private String login_id;//登录帐号
private String domain;//域名
public String getCount_date() {
return count_date;
}
public void setCount_date(String countDate) {
count_date = countDate;
}
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
public int getTimer_id() {
return timer_id;
}
public void setTimer_id(int timerId) {
timer_id = timerId;
}
public int getYear() {
return year;
}
public void setYear(int year) {
this.year = year;
}
public String getMonth() {
return month;
}
public void setMonth(String month) {
this.month = month;
}
public String getDay() {
return day;
}
public void setDay(String day) {
this.day = day;
}
public int getDay_count() {
return day_count;
}
public void setDay_count(int dayCount) {
day_count = dayCount;
}
public int getCount_id() {
return count_id;
}
public void setCount_id(int countId) {
count_id = countId;
}
public String getRecord_id() {
return record_id;
}
public void setRecord_id(String recordId) {
record_id = recordId;
}
public String getLogin_id() {
return login_id;
}
public void setLogin_id(String login_id) {
this.login_id = login_id;
}
public String getDomain() {
return domain;
}
public void setDomain(String domain) {
this.domain = domain;
}
}