| | |
| | | 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; |
| | |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public class SmsTemplet extends BaseEntity |
| | | { |
| | | @Data |
| | | public class SmsTemplet extends BaseEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * 主键 |
| | | */ |
| | | private Long templetid; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * 短信模板编号 |
| | | */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String templetno; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * 短信模板名称 |
| | | */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String templetname; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * 模板内容 |
| | | */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String templetcontent; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * 部门编码 |
| | | */ |
| | | @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 */ |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long isupload; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Date uploadTime; |
| | | |
| | | public void setTempletid(Long templetid) |
| | | { |
| | | this.templetid = templetid; |
| | | } |
| | | |
| | | public Long getTempletid() |
| | | { |
| | | return templetid; |
| | | } |
| | | public void setTempletno(String templetno) |
| | | { |
| | | this.templetno = templetno; |
| | | } |
| | | |
| | | public String getTempletno() |
| | | { |
| | | return templetno; |
| | | } |
| | | public void setTempletname(String templetname) |
| | | { |
| | | this.templetname = templetname; |
| | | } |
| | | |
| | | public String getTempletname() |
| | | { |
| | | return templetname; |
| | | } |
| | | public void setTempletcontent(String templetcontent) |
| | | { |
| | | this.templetcontent = templetcontent; |
| | | } |
| | | |
| | | public String getTempletcontent() |
| | | { |
| | | return templetcontent; |
| | | } |
| | | public void setDelFlag(String delFlag) |
| | | { |
| | | this.delFlag = delFlag; |
| | | } |
| | | |
| | | public String getDelFlag() |
| | | { |
| | | return delFlag; |
| | | } |
| | | public void setIsupload(Long isupload) |
| | | { |
| | | this.isupload = isupload; |
| | | } |
| | | |
| | | public Long getIsupload() |
| | | { |
| | | return isupload; |
| | | } |
| | | public void setUploadTime(Date uploadTime) |
| | | { |
| | | this.uploadTime = uploadTime; |
| | | } |
| | | |
| | | public Date getUploadTime() |
| | | { |
| | | return uploadTime; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("templetid", getTempletid()) |
| | | .append("templetno", getTempletno()) |
| | | .append("templetname", getTempletname()) |
| | | .append("templetcontent", getTempletcontent()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .toString(); |
| | | } |
| | | } |