Browse Source

fix: 修复短信模板中关于 type 字段的描述

DevDengChao 10 months ago
parent
commit
fc0a1f669d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      sql/mysql/ruoyi-vue-pro.sql

+ 1 - 1
sql/mysql/ruoyi-vue-pro.sql

@@ -5199,7 +5199,7 @@ COMMIT;
 DROP TABLE IF EXISTS `system_sms_template`;
 CREATE TABLE `system_sms_template`  (
   `id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号',
-  `type` tinyint NOT NULL COMMENT '短信签名',
+  `type` tinyint NOT NULL COMMENT '模板类型. 1: 验证码, 2: 通知, 3: 营销',
   `status` tinyint NOT NULL COMMENT '开启状态',
   `code` varchar(63) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '模板编码',
   `name` varchar(63) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '模板名称',