package com.iplatform.model.vo;
|
|
import java.io.Serializable;
|
|
/**
|
* 提醒通知,消息模板配置对象。
|
* @author 时克英
|
* @date 2023-08-25
|
*/
|
public class NotificationConfigVo implements Serializable {
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getTempId() {
|
return tempId;
|
}
|
|
public void setTempId(String tempId) {
|
this.tempId = tempId;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getTempKey() {
|
return tempKey;
|
}
|
|
public void setTempKey(String tempKey) {
|
this.tempKey = tempKey;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public Integer getStatus() {
|
return status;
|
}
|
|
public void setStatus(Integer status) {
|
this.status = status;
|
}
|
|
// @ApiModelProperty(value = "id")
|
private Long id;
|
|
// @ApiModelProperty(value = "模板id(公用)")
|
private String tempId;
|
|
// @ApiModelProperty(value = "模板说明(短信)")
|
private String title;
|
|
// @ApiModelProperty(value = "模板编号(公用)")
|
private String tempKey;
|
|
// @ApiModelProperty(value = "内容(公用)")
|
private String content;
|
|
// @ApiModelProperty(value = "模板名")
|
private String name;
|
|
// @ApiModelProperty(value = "状态,1-开启,2-关闭")
|
private Integer status;
|
}
|