From 248f33ff3b981a15b4adf26880e24852809561d9 Mon Sep 17 00:00:00 2001 From: 935090232@qq.com <ak473600000> Date: Thu, 28 Oct 2021 09:57:22 +0800 Subject: [PATCH] 短信改造延期 --- zq-erp/src/main/java/com/matrix/system/hive/bean/SysSmsTemplate.java | 98 +++---------------------------------------------- 1 files changed, 6 insertions(+), 92 deletions(-) diff --git a/zq-erp/src/main/java/com/matrix/system/hive/bean/SysSmsTemplate.java b/zq-erp/src/main/java/com/matrix/system/hive/bean/SysSmsTemplate.java index 469dfbf..3868a96 100644 --- a/zq-erp/src/main/java/com/matrix/system/hive/bean/SysSmsTemplate.java +++ b/zq-erp/src/main/java/com/matrix/system/hive/bean/SysSmsTemplate.java @@ -1,14 +1,14 @@ package com.matrix.system.hive.bean; -import com.matrix.core.pojo.EntityDTO; import com.matrix.core.anotations.Extend; -import com.matrix.system.hive.hievEnum.SmsPlatformEnum; +import lombok.Data; /** * @description 短信模板表 * @author wzy * @date 2020-03-15 18:42 */ +@Data public class SysSmsTemplate{ @Extend private static final long serialVersionUID = 1L; @@ -29,20 +29,6 @@ */ public static final Integer SMS_STATUS_N = 2; - /** - * 短信类型 验证码 - */ - public static final String SMS_TYPE_VERIFY_CODE = "0"; - - /** - * 短信类型 短信通知 - */ - public static final String SMS_TYPE_SMS_NOTICE = "1"; - - /** - * 短信类型 推广短信 - */ - public static final String SMS_TYPE_PROMOTE = "2"; /** * api接口action 添加模板 @@ -75,6 +61,10 @@ * 模板名称 */ private String stName; + /** + * 模板类型 + */ + private String smsType; /** * 短信平台 @@ -109,81 +99,5 @@ private Long companyId; - public Long getCompanyId() { - return companyId; - } - public void setCompanyId(Long companyId) { - this.companyId = companyId; - } - - public String getStRemark() { - return stRemark; - } - - public void setStRemark(String stRemark) { - this.stRemark = stRemark; - } - - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id=id; - } - - - public String getStName() { - return stName; - } - - public void setStName(String stName) { - this.stName=stName; - } - - - public String getStTemplate() { - return stTemplate; - } - - public void setStTemplate(String stTemplate) { - this.stTemplate=stTemplate; - } - - - public String getStCode() { - return stCode; - } - - public void setStCode(String stCode) { - this.stCode=stCode; - } - - - public Integer getStStatus() { - return stStatus; - } - - public void setStStatus(Integer stStatus) { - this.stStatus=stStatus; - } - - - public String getStReason() { - return stReason; - } - - public void setStReason(String stReason) { - this.stReason=stReason; - } - - - public String getSmsPlatform() { - return smsPlatform; - } - - public void setSmsPlatform(String smsPlatform) { - this.smsPlatform = smsPlatform; - } } \ No newline at end of file -- Gitblit v1.9.1