xiangpei
2025-05-13 9b811f9e7de77fe31e67df9396734ec9d52cdae1
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
package cn.lili.modules.sms.entity.dos;
 
import cn.lili.mybatis.BaseIdEntity;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
 
/**
 * 短信模板
 *
 * @author Chopper
 * @since 2021/1/30 4:13 下午
 */
@Data
@TableName("li_sms_template")
@ApiModel(value = "短信模板")
public class SmsTemplate extends BaseIdEntity {
 
    @ApiModelProperty(value = "模板名称", required = true)
    private String templateName;
 
    @ApiModelProperty(value = "短信类型", required = true)
    private Integer templateType;
 
    @ApiModelProperty(value = "短信模板申请说明", required = true)
    private String remark;
 
    @ApiModelProperty(value = "模板内容", required = true)
    private String templateContent;
 
    /**
     * 0:审核中。
     * 1:审核通过。
     * 2:审核失败,请在返回参数Reason中查看审核失败原因。
     */
    @ApiModelProperty(value = "模板审核状态")
    private Integer templateStatus;
 
    @ApiModelProperty(value = "短信模板CODE")
    private String templateCode;
 
    @ApiModelProperty(value = "审核备注")
    private String reason;
 
}