/* Navicat Premium Data Transfer Source Server : 192.168.3.20 Source Server Type : MySQL Source Server Version : 80035 Source Host : 192.168.3.20:3306 Source Schema : test_platform Target Server Type : MySQL Target Server Version : 80035 File Encoding : 65001 Date: 17/06/2024 15:17:49 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for func_car_app -- ---------------------------- DROP TABLE IF EXISTS `func_car_app`; CREATE TABLE `func_car_app` ( `oper_id` bigint NOT NULL COMMENT '主键', `name` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT '0' COMMENT '商品名称', `status` int NULL DEFAULT 0 COMMENT '状态', `create_time` datetime NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '操作时间', `update_time` int NULL DEFAULT NULL COMMENT '单位(秒)', `user_id` bigint NULL DEFAULT NULL, PRIMARY KEY (`oper_id`) USING BTREE, INDEX `idx_sys_oper_log_bt`(`name` ASC) USING BTREE, INDEX `idx_sys_oper_log_s`(`status` ASC) USING BTREE, INDEX `idx_sys_oper_log_ot`(`create_time` ASC) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '兼容可靠性测试系统-应用程序兼容性测试工具' ROW_FORMAT = Dynamic; SET FOREIGN_KEY_CHECKS = 1;