YxyMailStencilKeyword.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
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
* 单元名称: 模版的关键词配置实体
* 开始时间: 2018.05.15
* 程 序 员: 陈南巧
* 备 注: 如需修改请通知程序员
*/
@Entity
@Table(name="yxy_mail_stencil_keyword")
public class YxyMailStencilKeyword implements Serializable{
private static final long serialVersionUID = 1L;
private int id;//主键id
private int stencil_id;//模板id
private String title;//标题
private String keyword_one;//第一个关键词
private String keyword_two;//第二个关键词
private String description;//描述
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getStencil_id() {
return stencil_id;
}
public void setStencil_id(int stencilId) {
stencil_id = stencilId;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getKeyword_one() {
return keyword_one;
}
public void setKeyword_one(String keyword_one) {
this.keyword_one = keyword_one;
}
public String getKeyword_two() {
return keyword_two;
}
public void setKeyword_two(String keyword_two) {
this.keyword_two = keyword_two;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}