From d1ccdfa657de217c50c5b223958b92fc2c553f2f Mon Sep 17 00:00:00 2001 From: daiqy88 Date: Tue, 3 Feb 2026 19:15:23 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E7=B3=BB=E7=BB=9F=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E5=AD=97=E6=AE=B5=E9=95=BF=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../2026-02-03/system/system_param_config.sql | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 1-sql/2026-02-03/system/system_param_config.sql diff --git a/1-sql/2026-02-03/system/system_param_config.sql b/1-sql/2026-02-03/system/system_param_config.sql new file mode 100644 index 00000000..cdfb068b --- /dev/null +++ b/1-sql/2026-02-03/system/system_param_config.sql @@ -0,0 +1,34 @@ +/* + Navicat Premium Dump SQL + + Source Server : 基线版本 + Source Server Type : MySQL + Source Server Version : 80043 (8.0.43) + Source Host : 192.168.65.161:3306 + Source Schema : spdm_baseline + + Target Server Type : MySQL + Target Server Version : 80043 (8.0.43) + File Encoding : 65001 + + Date: 03/02/2026 18:51:57 +*/ + +SET NAMES utf8mb4; +SET FOREIGN_KEY_CHECKS = 0; + +-- ---------------------------- +-- Table structure for system_param_config +-- ---------------------------- +DROP TABLE IF EXISTS `system_param_config`; +CREATE TABLE `system_param_config` ( + `id` bigint NOT NULL AUTO_INCREMENT, + `paramName` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '系统参数名称', + `paramValue` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '系统参数值', + `tenantId` bigint NOT NULL DEFAULT 0 COMMENT '租户ID', + `creator` bigint NOT NULL DEFAULT 0 COMMENT '创建者', + `createTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 116 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic; + +SET FOREIGN_KEY_CHECKS = 1;