yygh_cmn数据库只含有一个表:dict 。该表存储医生的信息。
/*Navicat Premium Data TransferSource Server : 本地连接Source Server Type : MySQLSource Server Version : 80028Source Host : localhost:3306Source Schema : yygh_cmnTarget Server Type : MySQLTarget Server Version : 80028File Encoding : 65001Date: 30/03/2022 15:07:03*/SET NAMES utf8mb4;SET FOREIGN_KEY_CHECKS = 0;-- ------------------------------ Table structure for dict-- ----------------------------DROP TABLE IF EXISTS `dict`;CREATE TABLE `dict` (`id` bigint(0) NOT NULL DEFAULT 0 COMMENT 'id',`parent_id` bigint(0) NOT NULL DEFAULT 0 COMMENT '上级id',`name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '名称',`value` bigint(0) NULL DEFAULT NULL COMMENT '值',`dict_code` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '编码',`create_time` timestamp(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '创建时间',`update_time` timestamp(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) COMMENT '更新时间',`is_deleted` tinyint(0) NOT NULL DEFAULT 1 COMMENT '删除标记(0:不可用 1:可用)',PRIMARY KEY (`id`) USING BTREE,INDEX `idx_dict_code`(`dict_code`) USING BTREE,INDEX `idx_parent_id`(`parent_id`) USING BTREE) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '组织架构表' ROW_FORMAT = Dynamic;SET FOREIGN_KEY_CHECKS = 1;

