| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530 | -- MySQL dump 10.13  Distrib 8.0.27, for Linux (x86_64)---- Host: 192.168.1.242    Database: wvp-- -------------------------------------------------------- Server version	5.7.22/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;/*!50503 SET NAMES utf8mb4 */;/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;/*!40103 SET TIME_ZONE='+00:00' */;/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;---- Table structure for table `device`--DROP TABLE IF EXISTS `device`;/*!40101 SET @saved_cs_client     = @@character_set_client */;/*!50503 SET character_set_client = utf8mb4 */;CREATE TABLE `device` (  `deviceId` varchar(50) NOT NULL,  `name` varchar(255) DEFAULT NULL,  `manufacturer` varchar(255) DEFAULT NULL,  `model` varchar(255) DEFAULT NULL,  `firmware` varchar(255) DEFAULT NULL,  `transport` varchar(50) DEFAULT NULL,  `streamMode` varchar(50) DEFAULT NULL,  `online` varchar(50) DEFAULT NULL,  `registerTime` varchar(50) DEFAULT NULL,  `keepaliveTime` varchar(50) DEFAULT NULL,  `ip` varchar(50) NOT NULL,  `createTime` varchar(50) NOT NULL,  `updateTime` varchar(50) NOT NULL,  `port` int(11) NOT NULL,  `expires` int(11) NOT NULL,  `subscribeCycleForCatalog` int(11) NOT NULL,  `hostAddress` varchar(50) NOT NULL,  `charset` varchar(50) NOT NULL,  PRIMARY KEY (`deviceId`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `device`--LOCK TABLES `device` WRITE;/*!40000 ALTER TABLE `device` DISABLE KEYS */;/*!40000 ALTER TABLE `device` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `device_alarm`--DROP TABLE IF EXISTS `device_alarm`;/*!40101 SET @saved_cs_client     = @@character_set_client */;/*!50503 SET character_set_client = utf8mb4 */;CREATE TABLE `device_alarm` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `deviceId` varchar(50) NOT NULL,  `channelId` varchar(50) NOT NULL,  `alarmPriority` varchar(50) NOT NULL,  `alarmMethod` varchar(50) DEFAULT NULL,  `alarmTime` varchar(50) NOT NULL,  `alarmDescription` varchar(255) DEFAULT NULL,  `longitude` double DEFAULT NULL,  `latitude` double DEFAULT NULL,  `alarmType` varchar(50) DEFAULT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `device_alarm`--LOCK TABLES `device_alarm` WRITE;/*!40000 ALTER TABLE `device_alarm` DISABLE KEYS */;/*!40000 ALTER TABLE `device_alarm` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `device_channel`--DROP TABLE IF EXISTS `device_channel`;/*!40101 SET @saved_cs_client     = @@character_set_client */;/*!50503 SET character_set_client = utf8mb4 */;CREATE TABLE `device_channel` (  `channelId` varchar(50) NOT NULL,  `name` varchar(255) DEFAULT NULL,  `manufacture` varchar(50) DEFAULT NULL,  `model` varchar(50) DEFAULT NULL,  `owner` varchar(50) DEFAULT NULL,  `civilCode` varchar(50) DEFAULT NULL,  `block` varchar(50) DEFAULT NULL,  `address` varchar(50) DEFAULT NULL,  `parentId` varchar(50) DEFAULT NULL,  `safetyWay` int(11) DEFAULT NULL,  `registerWay` int(11) DEFAULT NULL,  `certNum` varchar(50) DEFAULT NULL,  `certifiable` int(11) DEFAULT NULL,  `errCode` int(11) DEFAULT NULL,  `endTime` varchar(50) DEFAULT NULL,  `secrecy` varchar(50) DEFAULT NULL,  `ipAddress` varchar(50) DEFAULT NULL,  `port` int(11) DEFAULT NULL,  `password` varchar(255) DEFAULT NULL,  `PTZType` int(11) DEFAULT NULL,  `status` int(11) DEFAULT NULL,  `longitude` double DEFAULT NULL,  `latitude` double DEFAULT NULL,  `streamId` varchar(50) DEFAULT NULL,  `deviceId` varchar(50) NOT NULL,  `parental` varchar(50) DEFAULT NULL,  `hasAudio` bit(1) DEFAULT NULL,  `createTime` varchar(50) NOT NULL,  `updateTime` varchar(50) NOT NULL,  PRIMARY KEY (`channelId`,`deviceId`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `device_channel`--LOCK TABLES `device_channel` WRITE;/*!40000 ALTER TABLE `device_channel` DISABLE KEYS */;/*!40000 ALTER TABLE `device_channel` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `device_mobile_position`--DROP TABLE IF EXISTS `device_mobile_position`;/*!40101 SET @saved_cs_client     = @@character_set_client */;/*!50503 SET character_set_client = utf8mb4 */;CREATE TABLE `device_mobile_position` (  `deviceId` varchar(50) NOT NULL,  `channelId` varchar(50) NOT NULL,  `deviceName` varchar(255) DEFAULT NULL,  `time` varchar(50) NOT NULL,  `longitude` double NOT NULL,  `latitude` double NOT NULL,  `altitude` double DEFAULT NULL,  `speed` double DEFAULT NULL,  `direction` double DEFAULT NULL,  `reportSource` varchar(50) DEFAULT NULL,  `geodeticSystem` varchar(50) DEFAULT NULL,  `cnLng` varchar(50) DEFAULT NULL,  `cnLat` varchar(50) DEFAULT NULL,  PRIMARY KEY (`deviceId`,`time`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `device_mobile_position`--LOCK TABLES `device_mobile_position` WRITE;/*!40000 ALTER TABLE `device_mobile_position` DISABLE KEYS */;/*!40000 ALTER TABLE `device_mobile_position` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `gb_stream`--DROP TABLE IF EXISTS `gb_stream`;/*!40101 SET @saved_cs_client     = @@character_set_client */;/*!50503 SET character_set_client = utf8mb4 */;CREATE TABLE `gb_stream` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `app` varchar(255) NOT NULL,  `stream` varchar(255) NOT NULL,  `gbId` varchar(50) NOT NULL,  `name` varchar(255) DEFAULT NULL,  `longitude` double DEFAULT NULL,  `latitude` double DEFAULT NULL,  `streamType` varchar(50) DEFAULT NULL,  `mediaServerId` varchar(50) DEFAULT NULL,  `status` int(11) DEFAULT NULL,  `createStamp` bigint(20) DEFAULT NULL,  PRIMARY KEY (`id`),  UNIQUE KEY `app` (`app`,`stream`),  UNIQUE KEY `gbId` (`gbId`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `gb_stream`--LOCK TABLES `gb_stream` WRITE;/*!40000 ALTER TABLE `gb_stream` DISABLE KEYS */;/*!40000 ALTER TABLE `gb_stream` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `log`--DROP TABLE IF EXISTS `log`;/*!40101 SET @saved_cs_client     = @@character_set_client */;/*!50503 SET character_set_client = utf8mb4 */;CREATE TABLE `log` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `name` varchar(50) NOT NULL,  `type` varchar(50) NOT NULL,  `uri` varchar(200) NOT NULL,  `address` varchar(50) NOT NULL,  `result` varchar(50) NOT NULL,  `timing` bigint(20) NOT NULL,  `username` varchar(50) NOT NULL,  `createTime` varchar(50) NOT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `log`--LOCK TABLES `log` WRITE;/*!40000 ALTER TABLE `log` DISABLE KEYS */;/*!40000 ALTER TABLE `log` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `media_server`--DROP TABLE IF EXISTS `media_server`;/*!40101 SET @saved_cs_client     = @@character_set_client */;/*!50503 SET character_set_client = utf8mb4 */;CREATE TABLE `media_server` (  `id` varchar(255) NOT NULL,  `ip` varchar(50) NOT NULL,  `hookIp` varchar(50) NOT NULL,  `sdpIp` varchar(50) NOT NULL,  `streamIp` varchar(50) NOT NULL,  `httpPort` int(11) NOT NULL,  `httpSSlPort` int(11) NOT NULL,  `rtmpPort` int(11) NOT NULL,  `rtmpSSlPort` int(11) NOT NULL,  `rtpProxyPort` int(11) NOT NULL,  `rtspPort` int(11) NOT NULL,  `rtspSSLPort` int(11) NOT NULL,  `autoConfig` int(11) NOT NULL,  `secret` varchar(50) NOT NULL,  `streamNoneReaderDelayMS` int(11) NOT NULL,  `rtpEnable` int(11) NOT NULL,  `rtpPortRange` varchar(50) NOT NULL,  `sendRtpPortRange` varchar(50) NOT NULL,  `recordAssistPort` int(11) NOT NULL,  `defaultServer` int(11) NOT NULL,  `createTime` varchar(50) NOT NULL,  `updateTime` varchar(50) NOT NULL,  `hookAliveInterval` int(11) NOT NULL,  PRIMARY KEY (`id`),  UNIQUE KEY `media_server_i` (`ip`,`httpPort`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `media_server`--LOCK TABLES `media_server` WRITE;/*!40000 ALTER TABLE `media_server` DISABLE KEYS */;/*!40000 ALTER TABLE `media_server` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `parent_platform`--DROP TABLE IF EXISTS `parent_platform`;/*!40101 SET @saved_cs_client     = @@character_set_client */;/*!50503 SET character_set_client = utf8mb4 */;CREATE TABLE `parent_platform` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `enable` int(11) DEFAULT NULL,  `name` varchar(255) DEFAULT NULL,  `serverGBId` varchar(50) NOT NULL,  `serverGBDomain` varchar(50) DEFAULT NULL,  `serverIP` varchar(50) DEFAULT NULL,  `serverPort` int(11) DEFAULT NULL,  `deviceGBId` varchar(50) NOT NULL,  `deviceIp` varchar(50) DEFAULT NULL,  `devicePort` varchar(50) DEFAULT NULL,  `username` varchar(255) DEFAULT NULL,  `password` varchar(50) DEFAULT NULL,  `expires` varchar(50) DEFAULT NULL,  `keepTimeout` varchar(50) DEFAULT NULL,  `transport` varchar(50) DEFAULT NULL,  `characterSet` varchar(50) DEFAULT NULL,  `catalogId` varchar(50) NOT NULL,  `ptz` int(11) DEFAULT NULL,  `rtcp` int(11) DEFAULT NULL,  `status` bit(1) DEFAULT NULL,  `shareAllLiveStream` int(11) DEFAULT NULL,  PRIMARY KEY (`id`,`serverGBId`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `parent_platform`--LOCK TABLES `parent_platform` WRITE;/*!40000 ALTER TABLE `parent_platform` DISABLE KEYS */;/*!40000 ALTER TABLE `parent_platform` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `platform_catalog`--DROP TABLE IF EXISTS `platform_catalog`;/*!40101 SET @saved_cs_client     = @@character_set_client */;/*!50503 SET character_set_client = utf8mb4 */;CREATE TABLE `platform_catalog` (  `id` varchar(50) NOT NULL,  `platformId` varchar(50) NOT NULL,  `name` varchar(255) NOT NULL,  `parentId` varchar(50) DEFAULT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `platform_catalog`--LOCK TABLES `platform_catalog` WRITE;/*!40000 ALTER TABLE `platform_catalog` DISABLE KEYS */;/*!40000 ALTER TABLE `platform_catalog` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `platform_gb_channel`--DROP TABLE IF EXISTS `platform_gb_channel`;/*!40101 SET @saved_cs_client     = @@character_set_client */;/*!50503 SET character_set_client = utf8mb4 */;CREATE TABLE `platform_gb_channel` (  `channelId` varchar(50) NOT NULL,  `deviceId` varchar(50) NOT NULL,  `platformId` varchar(50) NOT NULL,  `deviceAndChannelId` varchar(50) NOT NULL,  `catalogId` varchar(50) NOT NULL,  PRIMARY KEY (`deviceAndChannelId`,`platformId`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `platform_gb_channel`--LOCK TABLES `platform_gb_channel` WRITE;/*!40000 ALTER TABLE `platform_gb_channel` DISABLE KEYS */;/*!40000 ALTER TABLE `platform_gb_channel` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `platform_gb_stream`--DROP TABLE IF EXISTS `platform_gb_stream`;/*!40101 SET @saved_cs_client     = @@character_set_client */;/*!50503 SET character_set_client = utf8mb4 */;CREATE TABLE `platform_gb_stream` (  `platformId` varchar(50) NOT NULL,  `app` varchar(255) NOT NULL,  `stream` varchar(255) NOT NULL,  `catalogId` varchar(50) NOT NULL,  PRIMARY KEY (`platformId`,`app`,`stream`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `platform_gb_stream`--LOCK TABLES `platform_gb_stream` WRITE;/*!40000 ALTER TABLE `platform_gb_stream` DISABLE KEYS */;/*!40000 ALTER TABLE `platform_gb_stream` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `user_role`--DROP TABLE IF EXISTS `user_role`;/*!40101 SET @saved_cs_client     = @@character_set_client */;/*!50503 SET character_set_client = utf8mb4 */;CREATE TABLE `user_role` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `name` varchar(50) NOT NULL,  `authority` varchar(50) NOT NULL,  `createTime` varchar(50) NOT NULL,  `updateTime` varchar(50) NOT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `user_role`--LOCK TABLES `user_role` WRITE;/*!40000 ALTER TABLE `user_role` DISABLE KEYS */;INSERT INTO `user_role` VALUES (1,'admin','0','2021-04-13 14:14:57','2021-04-13 14:14:57');/*!40000 ALTER TABLE `user_role` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `stream_proxy`--DROP TABLE IF EXISTS `stream_proxy`;/*!40101 SET @saved_cs_client     = @@character_set_client */;/*!50503 SET character_set_client = utf8mb4 */;CREATE TABLE `stream_proxy` (  `type` varchar(50) NOT NULL,  `app` varchar(255) NOT NULL,  `stream` varchar(255) NOT NULL,  `url` varchar(255) DEFAULT NULL,  `src_url` varchar(255) DEFAULT NULL,  `dst_url` varchar(255) DEFAULT NULL,  `timeout_ms` int(11) DEFAULT NULL,  `ffmpeg_cmd_key` varchar(255) DEFAULT NULL,  `rtp_type` varchar(50) DEFAULT NULL,  `mediaServerId` varchar(50) DEFAULT NULL,  `enable_hls` bit(1) DEFAULT NULL,  `enable_mp4` bit(1) DEFAULT NULL,  `enable` bit(1) NOT NULL,  `status` bit(1) NOT NULL,  `enable_remove_none_reader` bit(1) NOT NULL,  `createTime` varchar(50) NOT NULL,  PRIMARY KEY (`app`,`stream`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `stream_proxy`--LOCK TABLES `stream_proxy` WRITE;/*!40000 ALTER TABLE `stream_proxy` DISABLE KEYS */;/*!40000 ALTER TABLE `stream_proxy` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `stream_push`--DROP TABLE IF EXISTS `stream_push`;/*!40101 SET @saved_cs_client     = @@character_set_client */;/*!50503 SET character_set_client = utf8mb4 */;CREATE TABLE `stream_push` (  `app` varchar(255) NOT NULL,  `stream` varchar(255) NOT NULL,  `totalReaderCount` varchar(50) DEFAULT NULL,  `originType` int(11) DEFAULT NULL,  `originTypeStr` varchar(50) DEFAULT NULL,  `createStamp` bigint(20) DEFAULT NULL,  `aliveSecond` int(11) DEFAULT NULL,  `mediaServerId` varchar(50) DEFAULT NULL,  PRIMARY KEY (`app`,`stream`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `stream_push`--LOCK TABLES `stream_push` WRITE;/*!40000 ALTER TABLE `stream_push` DISABLE KEYS */;/*!40000 ALTER TABLE `stream_push` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `user`--DROP TABLE IF EXISTS `user`;/*!40101 SET @saved_cs_client     = @@character_set_client */;/*!50503 SET character_set_client = utf8mb4 */;CREATE TABLE `user` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `username` varchar(255) NOT NULL,  `password` varchar(255) NOT NULL,  `roleId` int(11) NOT NULL,  `createTime` varchar(50) NOT NULL,  `updateTime` varchar(50) NOT NULL,  PRIMARY KEY (`id`),  UNIQUE KEY `user_username_uindex` (`username`)) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `user`--LOCK TABLES `user` WRITE;/*!40000 ALTER TABLE `user` DISABLE KEYS */;INSERT INTO `user` VALUES (1,'admin','21232f297a57a5a743894a0e4a801fc3',1,'2021-04-13 14:14:57','2021-04-13 14:14:57');/*!40000 ALTER TABLE `user` ENABLE KEYS */;UNLOCK TABLES;/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;-- Dump completed on 2022-01-25 15:36:42
 |