64d189a5de853393e6f268b2a73c3b9cdc0f1566.svn-base
1.5 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
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_html")
public class YxyMailStencilHtml implements Serializable{
private static final long serialVersionUID = 1L;
private int id;//主键id
private int stencil_id;//模板id
private String html_url;//模板对应的html存储路径
private String web_url;//模板对应的html网页web访问路径
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getHtml_url() {
return html_url;
}
public void setHtml_url(String html_url) {
this.html_url = html_url;
}
public int getStencil_id() {
return stencil_id;
}
public void setStencil_id(int stencilId) {
stencil_id = stencilId;
}
public String getWeb_url() {
return web_url;
}
public void setWeb_url(String web_url) {
this.web_url = web_url;
}
}