|
|
|
@ -1990,7 +1990,10 @@ DROP TABLE IF EXISTS `icd_file`;
|
|
|
|
|
CREATE TABLE `icd_file` (
|
|
|
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
|
|
`md5` varchar(45) DEFAULT NULL,
|
|
|
|
|
`filename` varchar(45) DEFAULT NULL,
|
|
|
|
|
`xml` longtext,
|
|
|
|
|
`srv` int(11) DEFAULT NULL,
|
|
|
|
|
`start` int(11) DEFAULT NULL,
|
|
|
|
|
PRIMARY KEY (`id`)
|
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='ICD文件';
|
|
|
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
@ -2017,6 +2020,7 @@ CREATE TABLE `icd_ied` (
|
|
|
|
|
`icd_file_id` int(11) DEFAULT NULL,
|
|
|
|
|
`ip` varchar(45) DEFAULT NULL,
|
|
|
|
|
`ap_title` varchar(45) DEFAULT NULL,
|
|
|
|
|
`start` int(11) DEFAULT NULL,
|
|
|
|
|
PRIMARY KEY (`id`)
|
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='ied信息表';
|
|
|
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
@ -2030,6 +2034,30 @@ LOCK TABLES `icd_ied` WRITE;
|
|
|
|
|
/*!40000 ALTER TABLE `icd_ied` ENABLE KEYS */;
|
|
|
|
|
UNLOCK TABLES;
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Table structure for table `icd_transform`
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
DROP TABLE IF EXISTS `icd_transform`;
|
|
|
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
|
|
|
CREATE TABLE `icd_transform` (
|
|
|
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
|
|
`rpt_from` varchar(200) DEFAULT NULL,
|
|
|
|
|
`rpt_to` varchar(200) DEFAULT NULL,
|
|
|
|
|
PRIMARY KEY (`id`)
|
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Dumping data for table `icd_transform`
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
LOCK TABLES `icd_transform` WRITE;
|
|
|
|
|
/*!40000 ALTER TABLE `icd_transform` DISABLE KEYS */;
|
|
|
|
|
/*!40000 ALTER TABLE `icd_transform` ENABLE KEYS */;
|
|
|
|
|
UNLOCK TABLES;
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Table structure for table `jg`
|
|
|
|
|
--
|
|
|
|
@ -2774,4 +2802,4 @@ UNLOCK TABLES;
|
|
|
|
|
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
|
|
|
|
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
|
|
|
|
|
|
|
|
|
-- Dump completed on 2024-10-09 11:36:20
|
|
|
|
|
-- Dump completed on 2024-10-14 13:59:03
|
|
|
|
|