修改仿真分析项库关联流程模版bug

This commit is contained in:
daiqy88
2025-12-30 20:27:05 +08:00
parent 82485bffcb
commit 68d5667f8a
7 changed files with 100 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
/*
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: 30/12/2025 20:03:18
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for simulation_app_call_record
-- ----------------------------
DROP TABLE IF EXISTS `simulation_app_call_record`;
CREATE TABLE `simulation_app_call_record` (
`id` int NOT NULL AUTO_INCREMENT,
`appName` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '应用名称',
`appType` tinyint NOT NULL COMMENT '应用类型 1本地应用 2云应用 3hpc求解应用 4web应用',
`creator` bigint NOT NULL COMMENT '应用调用人',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '应用调用时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 6 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;
SET FOREIGN_KEY_CHECKS = 1;