SmsTemplate.java
1010 Bytes
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
package com.diligrp.assistant.sms.domain;
public class SmsTemplate {
// 模版ID
private String id;
// 模版类型
private Integer type;
// 模版名称
private String name;
// 模版内容
private String content;
// 模版描述
private String description;
public SmsTemplate(Integer type, String name, String content, String description) {
this(null, type, name, content, description);
}
public SmsTemplate(String id, Integer type, String name, String content, String description) {
this.id = id;
this.type = type;
this.name = name;
this.content = content;
this.description = description;
}
public String getId() {
return id;
}
public Integer getType() {
return type;
}
public String getName() {
return name;
}
public String getContent() {
return content;
}
public String getDescription() {
return description;
}
}