liusheng
6 小时以前 732024c03df1d810b8f5a8a526066967f1bfbb5d
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
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;
 
}