地质所 沉降监测网建设项目
chenhuan
2024-05-16 0fdd42e318f51f9e3c6581473416af1cca69877f
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
package com.javaweb.cms.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.javaweb.common.annotation.Excel;
import com.javaweb.common.core.domain.BaseEntity;
 
/**
 * 模板对象 cms_template
 * 
 * @author wujiyue
 * @date 2019-11-17
 */
public class Template extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** ID */
    private Long templateId;
 
    /** 模板代码 */
    @Excel(name = "模板代码")
    private String templateCode;
 
    /** 模板分类 */
    @Excel(name = "模板分类")
    private String templateType;
 
    /** 模板名称 */
    @Excel(name = "模板名称")
    private String templateName;
 
    /** 模板内容 */
    @Excel(name = "模板内容")
    private String templateContent;
 
    public void setTemplateId(Long templateId) 
    {
        this.templateId = templateId;
    }
 
    public Long getTemplateId() 
    {
        return templateId;
    }
    public void setTemplateCode(String templateCode) 
    {
        this.templateCode = templateCode;
    }
 
    public String getTemplateCode() 
    {
        return templateCode;
    }
    public void setTemplateType(String templateType) 
    {
        this.templateType = templateType;
    }
 
    public String getTemplateType() 
    {
        return templateType;
    }
    public void setTemplateName(String templateName) 
    {
        this.templateName = templateName;
    }
 
    public String getTemplateName() 
    {
        return templateName;
    }
    public void setTemplateContent(String templateContent) 
    {
        this.templateContent = templateContent;
    }
 
    public String getTemplateContent() 
    {
        return templateContent;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("templateId", getTemplateId())
            .append("templateCode", getTemplateCode())
            .append("templateType", getTemplateType())
            .append("templateName", getTemplateName())
            .append("templateContent", getTemplateContent())
            .toString();
    }
}