package com.matrix.system.hive.bean;
|
|
import com.matrix.core.anotations.Extend;
|
import lombok.Data;
|
|
/**
|
* @description 短信模板表
|
* @author wzy
|
* @date 2020-03-15 18:42
|
*/
|
@Data
|
public class SysSmsTemplate{
|
@Extend
|
private static final long serialVersionUID = 1L;
|
|
|
/**
|
* 审核状态 审核中
|
*/
|
public static final Integer SMS_STATUS_DOING = 0;
|
|
/**
|
* 审核状态 审核成功
|
*/
|
public static final Integer SMS_STATUS_Y = 1;
|
|
/**
|
* 审核状态 审核失败
|
*/
|
public static final Integer SMS_STATUS_N = 2;
|
|
|
/**
|
* api接口action 添加模板
|
*/
|
public static final String SMS_ACTION_ADD = "AddSmsTemplate";
|
|
/**
|
* api接口action 发送短信
|
*/
|
public static final String SMS_ACTION_SEND = "SendSms";
|
|
/**
|
* api接口action 查询模板
|
*/
|
public static final String SMS_ACTION_QUERY = "QuerySmsTemplate";
|
|
/**
|
* api接口action 删除模板
|
*/
|
public static final String SMS_ACTION_DELETE = "DeleteSmsTemplate";
|
|
|
/**
|
* 主键
|
*/
|
private Long id;
|
|
|
/**
|
* 模板名称
|
*/
|
private String stName;
|
/**
|
* 模板类型
|
*/
|
private String smsType;
|
|
/**
|
* 短信平台
|
*/
|
private String smsPlatform;
|
|
|
/**
|
* 模板内容
|
*/
|
private String stTemplate;
|
|
|
/**
|
* 模板code
|
*/
|
private String stCode;
|
|
|
/**
|
* 审核状态
|
*/
|
private Integer stStatus;
|
|
|
/**
|
* 失败原因
|
*/
|
private String stReason;
|
|
private String stRemark;
|
|
private Long companyId;
|
|
|
}
|