package com.ruoyi.system.domain;
|
|
import java.util.Date;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.ruoyi.common.annotation.Excel;
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
/**
|
* 短信模板对象 sms_templet
|
*
|
* @author smartor
|
* @date 2023-03-06
|
*/
|
@Data
|
public class SmsTemplet extends BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
private Long templetid;
|
|
/**
|
* 短信模板编号
|
*/
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
private String templetno;
|
|
/**
|
* 短信模板名称
|
*/
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
private String templetname;
|
|
/**
|
* 模板内容
|
*/
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
private String templetcontent;
|
|
/**
|
* 部门编码
|
*/
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
private String deptCode;
|
|
/**
|
* 部门名称
|
*/
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
private String deptName;
|
|
/**
|
* 病区编码
|
*/
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
private String wardCode;
|
|
/**
|
* 病区名称
|
*/
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
private String wardName;
|
|
/**
|
* 用户工号
|
*/
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
private String userName;
|
|
/**
|
* 用户铝箔
|
*/
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
private String nickName;
|
|
/**
|
* $column.columnComment
|
*/
|
private String delFlag;
|
|
/**
|
* $column.columnComment
|
*/
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
private Long isupload;
|
|
/**
|
* $column.columnComment
|
*/
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
private Date uploadTime;
|
|
}
|