From 7ce62de81b26207f20406a378f3281b0a2135868 Mon Sep 17 00:00:00 2001 From: 935090232@qq.com <ak473600000> Date: Thu, 28 Oct 2021 00:39:06 +0800 Subject: [PATCH] 短信改造1 --- zq-erp/src/main/java/com/matrix/system/hive/bean/SysSmsTemplate.java | 17 ++++++++++++++--- 1 files changed, 14 insertions(+), 3 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 e3987e7..469dfbf 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 @@ -2,6 +2,7 @@ import com.matrix.core.pojo.EntityDTO; import com.matrix.core.anotations.Extend; +import com.matrix.system.hive.hievEnum.SmsPlatformEnum; /** * @description 短信模板表 @@ -74,7 +75,12 @@ * 模板名称 */ private String stName; - + + /** + * 短信平台 + */ + private String smsPlatform; + /** * 模板内容 @@ -171,8 +177,13 @@ 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