/* 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;