You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.4 KiB
43 lines
1.4 KiB
2 years ago
|
/*
|
||
|
Navicat Premium Data Transfer
|
||
|
|
||
|
Source Server : localhost mysql
|
||
|
Source Server Type : MySQL
|
||
|
Source Server Version : 80033 (8.0.33)
|
||
|
Source Host : localhost:3306
|
||
|
Source Schema : ynxbd_wx
|
||
|
|
||
|
Target Server Type : MySQL
|
||
|
Target Server Version : 80033 (8.0.33)
|
||
|
File Encoding : 65001
|
||
|
|
||
|
Date: 16/08/2023 17:13:25
|
||
|
*/
|
||
|
|
||
|
SET NAMES utf8mb4;
|
||
|
SET FOREIGN_KEY_CHECKS = 0;
|
||
|
|
||
|
-- ----------------------------
|
||
|
-- Table structure for dict_chronic
|
||
|
-- ----------------------------
|
||
|
DROP TABLE IF EXISTS `dict_chronic`;
|
||
|
CREATE TABLE `dict_chronic` (
|
||
|
`ChronicId` int NOT NULL AUTO_INCREMENT,
|
||
|
`ChronicName` varchar(200) DEFAULT NULL,
|
||
|
`ChronicTip` varchar(500) DEFAULT NULL,
|
||
|
`ChronicType` int DEFAULT NULL COMMENT '门诊/住院\n1.门诊\n2.住院',
|
||
|
PRIMARY KEY (`ChronicId`)
|
||
|
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3;
|
||
|
|
||
|
-- ----------------------------
|
||
|
-- Records of dict_chronic
|
||
|
-- ----------------------------
|
||
|
BEGIN;
|
||
|
INSERT INTO `dict_chronic` (`ChronicId`, `ChronicName`, `ChronicTip`, `ChronicType`) VALUES (1, '高血压', NULL, 1);
|
||
|
INSERT INTO `dict_chronic` (`ChronicId`, `ChronicName`, `ChronicTip`, `ChronicType`) VALUES (2, '肝炎', NULL, 1);
|
||
|
INSERT INTO `dict_chronic` (`ChronicId`, `ChronicName`, `ChronicTip`, `ChronicType`) VALUES (3, '抑郁症', NULL, 1);
|
||
|
INSERT INTO `dict_chronic` (`ChronicId`, `ChronicName`, `ChronicTip`, `ChronicType`) VALUES (4, '甲亢', NULL, 1);
|
||
|
COMMIT;
|
||
|
|
||
|
SET FOREIGN_KEY_CHECKS = 1;
|