YxyOldcustomerCounts.java
1.8 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
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;
/***
*
* @author 谢勇
* CRM库发信月统计实体
*/
@Entity
@Table(name="yxy_oldcustomer_counts")
public class YxyOldcustomerCounts implements Serializable {
private static final long serialVersionUID = 1L;
private int id;//主键id
private int user_id;//用户id
private String loginid;//帐号
private String domain;//域名
private int count_year;//CRM库发信统计-年份
private int count_month;//CRM库发信统计-月份
private String update_time;//CRM库发信统计-最后更改时间
private int counts;//当前月份的总发信数量
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getUser_id() {
return user_id;
}
public void setUser_id(int user_id) {
this.user_id = user_id;
}
public String getLoginid() {
return loginid;
}
public void setLoginid(String loginid) {
this.loginid = loginid;
}
public String getDomain() {
return domain;
}
public void setDomain(String domain) {
this.domain = domain;
}
public int getCount_year() {
return count_year;
}
public void setCount_year(int count_year) {
this.count_year = count_year;
}
public int getCount_month() {
return count_month;
}
public void setCount_month(int count_month) {
this.count_month = count_month;
}
public String getUpdate_time() {
return update_time;
}
public void setUpdate_time(String update_time) {
this.update_time = update_time;
}
public int getCounts() {
return counts;
}
public void setCounts(int counts) {
this.counts = counts;
}
}