SmsTemplateDo.java
3.48 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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
package com.diligrp.assistant.sms.model;
import com.diligrp.assistant.shared.domain.BaseDo;
import java.time.LocalDateTime;
public class SmsTemplateDo extends BaseDo {
// 模版ID
private String templateId;
// 服务通道
private Integer pipeline;
// 模版类型
private Integer type;
// 模版名称
private String name;
// 模版内容
private String content;
// 模版状态
private Integer state;
// 备注
private String description;
// 外部模版ID
private String outTemplateId;
public String getTemplateId() {
return templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
}
public Integer getPipeline() {
return pipeline;
}
public void setPipeline(Integer pipeline) {
this.pipeline = pipeline;
}
public Integer getType() {
return type;
}
public void setType(Integer type) {
this.type = type;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public Integer getState() {
return state;
}
public void setState(Integer state) {
this.state = state;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getOutTemplateId() {
return outTemplateId;
}
public void setOutTemplateId(String outTemplateId) {
this.outTemplateId = outTemplateId;
}
public static SmsTemplateDo.Builder builder() {
return new SmsTemplateDo().new Builder();
}
public class Builder {
public Builder templateId(String templateId) {
SmsTemplateDo.this.templateId = templateId;
return this;
}
public Builder pipeline(int pipeline) {
SmsTemplateDo.this.pipeline = pipeline;
return this;
}
public Builder type(int type) {
SmsTemplateDo.this.type = type;
return this;
}
public Builder name(String name) {
SmsTemplateDo.this.name = name;
return this;
}
public Builder content(String content) {
SmsTemplateDo.this.content = content;
return this;
}
public Builder state(int state) {
SmsTemplateDo.this.state = state;
return this;
}
public Builder description(String description) {
SmsTemplateDo.this.description = description;
return this;
}
public Builder outTemplateId(String outTemplateId) {
SmsTemplateDo.this.outTemplateId = outTemplateId;
return this;
}
public Builder version(Integer version) {
SmsTemplateDo.this.version = version;
return this;
}
public Builder createdTime(LocalDateTime createdTime) {
SmsTemplateDo.this.createdTime = createdTime;
return this;
}
public Builder modifiedTime(LocalDateTime modifiedTime) {
SmsTemplateDo.this.modifiedTime = modifiedTime;
return this;
}
public SmsTemplateDo build() {
return SmsTemplateDo.this;
}
}
}