/* Navicat Premium Data Transfer Source Server : localhost Source Server Type : MySQL Source Server Version : 80042 Source Host : localhost:3306 Source Schema : ruoyi-fastapi Target Server Type : MySQL Target Server Version : 80042 File Encoding : 65001 Date: 12/06/2025 13:09:24 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for test_category -- ---------------------------- DROP TABLE IF EXISTS `test_category`; CREATE TABLE `test_category` ( `id` int(0) NOT NULL AUTO_INCREMENT COMMENT '分类ID', `name` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '分类名称', `memo` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '备注说明', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 9 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '测试分类表' ROW_FORMAT = Dynamic; SET FOREIGN_KEY_CHECKS = 1;