ContactsEntity.java
2.09 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
package com.bckefu.entity;
import com.bckefu.excel.annotation.Excel;
import com.bckefu.excel.annotation.ExcelEntity;
import java.io.Serializable;
import java.util.Date;
/**
* @author : caoliang
* @date : 2017/11/6:下午3:55
*/
public class ContactsEntity implements Serializable {
/**
* id
*/
private java.lang.String id;
// 电话号码(主键)
@Excel(name = "电话号码", width = 15)
private String clientPhone = null;
// 客户姓名
@Excel(name = "姓名")
private String clientName = null;
// 所属分组
@ExcelEntity
private ContactsGroup group = null;
// 备注
@Excel(name = "备注")
private String remark = null;
// 生日
@Excel(name = "出生日期", format = "yyyy-MM-dd", width = 20)
private Date birthday = null;
@Excel(name = "创建时间", format = "yyyy-MM-dd HH:mm:ss", width = 25)
private Date cts;
// 创建人
private String createBy = null;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getClientPhone() {
return clientPhone;
}
public void setClientPhone(String clientPhone) {
this.clientPhone = clientPhone;
}
public String getClientName() {
return clientName;
}
public void setClientName(String clientName) {
this.clientName = clientName;
}
public ContactsGroup getGroup() {
return group;
}
public void setGroup(ContactsGroup group) {
this.group = group;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public Date getBirthday() {
return birthday;
}
public void setBirthday(Date birthday) {
this.birthday = birthday;
}
public Date getCts() {
return cts;
}
public void setCts(Date cts) {
this.cts = cts;
}
public String getCreateBy() {
return createBy;
}
public void setCreateBy(String createBy) {
this.createBy = createBy;
}
}