package com.iplatform.model.vo;
|
|
import java.io.Serializable;
|
|
public class NotificationTemplateVo implements Serializable {
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public boolean getWechat() {
|
return wechat;
|
}
|
|
public void setWechat(boolean wechat) {
|
this.wechat = wechat;
|
}
|
|
public boolean getRoutine() {
|
return routine;
|
}
|
|
public void setRoutine(boolean routine) {
|
this.routine = routine;
|
}
|
|
public boolean getSms() {
|
return sms;
|
}
|
|
public void setSms(boolean sms) {
|
this.sms = sms;
|
}
|
|
public long getWechatId() {
|
return wechatId;
|
}
|
|
public void setWechatId(long wechatId) {
|
this.wechatId = wechatId;
|
}
|
|
public long getRoutineId() {
|
return routineId;
|
}
|
|
public void setRoutineId(long routineId) {
|
this.routineId = routineId;
|
}
|
|
public long getSmsId() {
|
return smsId;
|
}
|
|
public void setSmsId(long smsId) {
|
this.smsId = smsId;
|
}
|
|
public String getWechatTempId() {
|
return wechatTempId;
|
}
|
|
public void setWechatTempId(String wechatTempId) {
|
this.wechatTempId = wechatTempId;
|
}
|
|
public String getRoutineTempId() {
|
return routineTempId;
|
}
|
|
public void setRoutineTempId(String routineTempId) {
|
this.routineTempId = routineTempId;
|
}
|
|
public String getSmsTempId() {
|
return smsTempId;
|
}
|
|
public void setSmsTempId(String smsTempId) {
|
this.smsTempId = smsTempId;
|
}
|
|
private String name;
|
|
private boolean wechat = false; // 微信公众号
|
private boolean routine = false; // 微信小程序
|
private boolean sms = false;
|
|
private long wechatId = 0;
|
private long routineId = 0;
|
private long smsId = 0; // 对应各自模板id,TemplateMessage
|
|
private String wechatTempId;
|
private String routineTempId;
|
private String smsTempId;
|
|
// 目前缓存中不需要存储模板具体内容,仅为了看到内容而已
|
// private String wechatContent;
|
// private String routineContent;
|
// private String smsContent;
|
}
|