feiyu02
2024-11-19 752e00503f672ddfe2066afb6c235721a3a912b5
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
package cn.flightfeather.supervision.domain.entity;
 
import javax.persistence.*;
 
@Table(name = "ec_t_notice_template")
public class NoticeTemplate {
    @Id
    @Column(name = "NT_ID")
    private Integer ntId;
 
    @Column(name = "NT_Notice_Type")
    private Integer ntNoticeType;
 
    @Column(name = "NT_Notice_Type_Name")
    private String ntNoticeTypeName;
 
    @Column(name = "NT_Notice_Sub_Type")
    private Integer ntNoticeSubType;
 
    @Column(name = "NT_Notice_Sub_Type_Name")
    private String ntNoticeSubTypeName;
 
    @Column(name = "NT_Notice_Title")
    private String ntNoticeTitle;
 
    @Column(name = "NT_Notice_Template")
    private String ntNoticeTemplate;
 
    /**
     * @return NT_ID
     */
    public Integer getNtId() {
        return ntId;
    }
 
    /**
     * @param ntId
     */
    public void setNtId(Integer ntId) {
        this.ntId = ntId;
    }
 
    /**
     * @return NT_Notice_Type
     */
    public Integer getNtNoticeType() {
        return ntNoticeType;
    }
 
    /**
     * @param ntNoticeType
     */
    public void setNtNoticeType(Integer ntNoticeType) {
        this.ntNoticeType = ntNoticeType;
    }
 
    /**
     * @return NT_Notice_Type_Name
     */
    public String getNtNoticeTypeName() {
        return ntNoticeTypeName;
    }
 
    /**
     * @param ntNoticeTypeName
     */
    public void setNtNoticeTypeName(String ntNoticeTypeName) {
        this.ntNoticeTypeName = ntNoticeTypeName == null ? null : ntNoticeTypeName.trim();
    }
 
    /**
     * @return NT_Notice_Sub_Type
     */
    public Integer getNtNoticeSubType() {
        return ntNoticeSubType;
    }
 
    /**
     * @param ntNoticeSubType
     */
    public void setNtNoticeSubType(Integer ntNoticeSubType) {
        this.ntNoticeSubType = ntNoticeSubType;
    }
 
    /**
     * @return NT_Notice_Sub_Type_Name
     */
    public String getNtNoticeSubTypeName() {
        return ntNoticeSubTypeName;
    }
 
    /**
     * @param ntNoticeSubTypeName
     */
    public void setNtNoticeSubTypeName(String ntNoticeSubTypeName) {
        this.ntNoticeSubTypeName = ntNoticeSubTypeName == null ? null : ntNoticeSubTypeName.trim();
    }
 
    /**
     * @return NT_Notice_Title
     */
    public String getNtNoticeTitle() {
        return ntNoticeTitle;
    }
 
    /**
     * @param ntNoticeTitle
     */
    public void setNtNoticeTitle(String ntNoticeTitle) {
        this.ntNoticeTitle = ntNoticeTitle == null ? null : ntNoticeTitle.trim();
    }
 
    /**
     * @return NT_Notice_Template
     */
    public String getNtNoticeTemplate() {
        return ntNoticeTemplate;
    }
 
    /**
     * @param ntNoticeTemplate
     */
    public void setNtNoticeTemplate(String ntNoticeTemplate) {
        this.ntNoticeTemplate = ntNoticeTemplate == null ? null : ntNoticeTemplate.trim();
    }
}