天天看点

基于SpringBoot2.0 + ElementUI(VUE2)+MySQL +UID生成器+MYSQL的菜单权限模块管理应用学习

好久没写文章了,只是最近重操旧业,有些资源需要大量的积分下能下载,想想还是写点文档,有点流量后,不至于太难受……

话说如题,已经是老僧常谈的内容了,但不知怎滴,却也经久不衰,想必这就是传说中的核心内容吧……其实不管外围技术如何变化多端,核心部分确实很稳定,基本也是如下组成部分:

1、组织结构,2、人员信息,3、角色权限,4、菜单模块,5、子系统,6、前后端分离,7、各应用独立开发,集成管理

主要用到的技术其实也比较普通,作为spring boot2,element ui,vue2.0等技术的学习研究,个人认为入门是没问题吧,更多的,还请移步GIT上的源码:

后端系统 https://github.com/106319819/xone

前端系统 https://github.com/106319819/xone-ui

其实要感谢大家对技术的贡献,本项目也是基于其他高人的肩膀,根据自己的想法揉合在一起的,请诸君多多指教!

关于前端测试时需要注意的点(默认时使用动态加载的方式,如果你需要静态时,请调整相应的注解):

基于SpringBoot2.0 + ElementUI(VUE2)+MySQL +UID生成器+MYSQL的菜单权限模块管理应用学习

下边是系统的本地测试图示:D:\MyProjects\workspace\xone-ui>npm run dev

http://localhost:8081

基于SpringBoot2.0 + ElementUI(VUE2)+MySQL +UID生成器+MYSQL的菜单权限模块管理应用学习
基于SpringBoot2.0 + ElementUI(VUE2)+MySQL +UID生成器+MYSQL的菜单权限模块管理应用学习

数据库请自行创建,始脚本先导出一个吧

-- MySQL dump 10.13  Distrib 5.7.17, for Win64 (x86_64)
--
-- Host: localhost    Database: xone
-- ------------------------------------------------------
-- Server version	5.7.17-log

/*!40101 SET @[email protected]@CHARACTER_SET_CLIENT */;
/*!40101 SET @[email protected]@CHARACTER_SET_RESULTS */;
/*!40101 SET @[email protected]@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @[email protected]@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @[email protected]@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @[email protected]@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @[email protected]@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @[email protected]@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `account`
--

DROP TABLE IF EXISTS `account`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `account` (
  `account_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `comment` varchar(256) DEFAULT NULL COMMENT '备注',
  `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  `update_time` datetime DEFAULT NULL,
  `account_code` varchar(64) NOT NULL COMMENT '登录账号',
  `account_type` char(1) NOT NULL COMMENT '账号类型 9超级管理员  8子系统管理员 0一般账号 ',
  `password` varchar(64) NOT NULL COMMENT '密码',
  `status` int(2) NOT NULL COMMENT '账号状态 0未激活 1激活 2禁用 3删除',
  PRIMARY KEY (`account_id`),
  UNIQUE KEY `UK_ah2gw5ynairyihj4glqfv5sy3` (`account_code`)
) ENGINE=InnoDB AUTO_INCREMENT=386458176586787329 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `account`
--

LOCK TABLES `account` WRITE;
/*!40000 ALTER TABLE `account` DISABLE KEYS */;
INSERT INTO `account` VALUES (382832601418695169,NULL,'2019-03-17 15:47:16','2019-03-31 15:11:53','webmaster','0','E10ADC3949BA59ABBE56E057F20F883E',1),(386458176586787328,NULL,'2019-03-27 10:34:59','2019-03-31 14:13:44','zhangyao','0','202CB962AC59075B964B07152D234B70',1);
/*!40000 ALTER TABLE `account` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dictionary`
--

DROP TABLE IF EXISTS `dictionary`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dictionary` (
  `dictionary_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `comment` varchar(256) DEFAULT NULL COMMENT '备注',
  `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  `update_time` datetime DEFAULT NULL,
  `code` varchar(255) NOT NULL,
  `sort_no` int(11) DEFAULT NULL,
  `type_id` bigint(20) NOT NULL,
  `value` varchar(255) NOT NULL,
  PRIMARY KEY (`dictionary_id`),
  UNIQUE KEY `DICTIONARY_INDEX` (`type_id`,`code`)
) ENGINE=InnoDB AUTO_INCREMENT=392397828594387468 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dictionary`
--

LOCK TABLES `dictionary` WRITE;
/*!40000 ALTER TABLE `dictionary` DISABLE KEYS */;
INSERT INTO `dictionary` VALUES (392397828594387465,NULL,'2019-04-12 10:28:40','2019-04-12 10:31:41','0',0,392379626522986048,'男2'),(392397828594387467,NULL,'2019-04-12 10:28:48','2019-04-12 10:37:17','1',1,392379626522986048,'女2');
/*!40000 ALTER TABLE `dictionary` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dictionary_type`
--

DROP TABLE IF EXISTS `dictionary_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dictionary_type` (
  `type_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `comment` varchar(256) DEFAULT NULL COMMENT '备注',
  `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  `update_time` datetime DEFAULT NULL,
  `status` int(2) NOT NULL COMMENT '账号状态 0未激活 1激活 2禁用 3删除',
  `type_code` varchar(255) NOT NULL,
  `type_name` varchar(255) NOT NULL,
  PRIMARY KEY (`type_id`),
  UNIQUE KEY `DICTIONARY_TYPE_INDEX` (`type_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dictionary_type`
--

LOCK TABLES `dictionary_type` WRITE;
/*!40000 ALTER TABLE `dictionary_type` DISABLE KEYS */;
/*!40000 ALTER TABLE `dictionary_type` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `hibernate_sequence`
--

DROP TABLE IF EXISTS `hibernate_sequence`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hibernate_sequence` (
  `next_val` bigint(20) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `hibernate_sequence`
--

LOCK TABLES `hibernate_sequence` WRITE;
/*!40000 ALTER TABLE `hibernate_sequence` DISABLE KEYS */;
INSERT INTO `hibernate_sequence` VALUES (105);
/*!40000 ALTER TABLE `hibernate_sequence` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `host`
--

DROP TABLE IF EXISTS `host`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `host` (
  `host_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `comment` varchar(256) DEFAULT NULL COMMENT '备注',
  `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  `update_time` datetime DEFAULT NULL,
  `name` varchar(64) NOT NULL,
  `url` varchar(255) NOT NULL,
  `variable` varchar(255) NOT NULL,
  PRIMARY KEY (`host_id`)
) ENGINE=InnoDB AUTO_INCREMENT=387911005109244418 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `host`
--

LOCK TABLES `host` WRITE;
/*!40000 ALTER TABLE `host` DISABLE KEYS */;
INSERT INTO `host` VALUES (387769245418670599,'rrr',NULL,'2019-03-31 08:09:04','内容管理','http://localhost:8080/suncms','SUNCMS'),(387911005109244417,NULL,'2019-03-31 08:19:05','2019-03-31 08:19:05','酒店管理子系统主机','http://localhost:8080/hotel','HOTEL');
/*!40000 ALTER TABLE `host` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `module`
--

DROP TABLE IF EXISTS `module`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `module` (
  `module_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `comment` varchar(256) DEFAULT NULL COMMENT '备注',
  `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  `update_time` datetime DEFAULT NULL,
  `icon` varchar(64) DEFAULT NULL,
  `name` varchar(64) NOT NULL,
  `parent_id` bigint(20) DEFAULT NULL,
  `permission` varchar(128) DEFAULT NULL,
  `sort_no` int(11) DEFAULT NULL,
  `status` int(11) NOT NULL,
  `sub_system_id` bigint(20) DEFAULT NULL,
  `type` int(11) NOT NULL,
  `url` varchar(256) DEFAULT NULL,
  PRIMARY KEY (`module_id`)
) ENGINE=InnoDB AUTO_INCREMENT=392379626522985994 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `module`
--

LOCK TABLES `module` WRITE;
/*!40000 ALTER TABLE `module` DISABLE KEYS */;
INSERT INTO `module` VALUES (382832601418695174,NULL,'2019-03-17 15:52:28','2019-03-17 15:52:28','iconfont icon-shuzhuangtu_o','组织管理',0,NULL,0,1,382832601418695172,1,'/organization/index'),(382832601418695175,NULL,'2019-03-17 15:53:37','2019-03-17 15:53:37','iconfont icon-qunzu_o','人员管理',0,NULL,0,1,382832601418695172,1,'/person/index'),(382832601418695176,NULL,'2019-03-17 15:54:14','2019-03-17 15:54:14',NULL,'子系统管理',0,NULL,0,1,382832601418695172,1,'/system/index'),(382832601418695177,NULL,'2019-03-17 15:54:47','2019-03-17 15:54:47',NULL,'模块管理',0,NULL,0,1,382832601418695172,1,'/module/index'),(382832601418695178,NULL,'2019-03-17 15:55:25','2019-03-17 15:55:25',NULL,'角色管理',0,NULL,0,1,382832601418695172,1,'/role/index'),(384617735855801858,NULL,NULL,'2019-04-03 16:30:08',NULL,'站点管理',0,NULL,0,1,384617735855801856,1,'http://localhost:8080/suncms/cmsadmin/site/site.jsp'),(384617735855801859,NULL,'2019-03-22 11:15:29','2019-04-03 16:30:08',NULL,'栏目管理',0,NULL,0,1,384617735855801856,1,'http://localhost:8080/suncms/cmsadmin/class/class.jsp'),(384617735855801860,NULL,'2019-03-22 11:16:15','2019-04-03 16:30:08',NULL,'采编管理',0,NULL,0,1,384617735855801856,1,'http://localhost:8080/suncms/cmsadmin/content/content.jsp'),(384617735855801861,NULL,'2019-03-22 11:17:06','2019-04-03 16:30:08',NULL,'权限管理',0,NULL,0,1,384617735855801856,0,'http://localhost:8080/suncms/cmsadmin/content/content.jsp'),(384617735855801862,NULL,'2019-03-22 11:17:40','2019-04-03 16:30:08',NULL,'权限级别定义',384617735855801861,NULL,0,1,384617735855801856,1,'http://localhost:8080/suncms/cmsadmin/privilege/auditLevel.jsp'),(384617735855801863,NULL,'2019-03-22 11:18:11','2019-04-03 16:30:08',NULL,'审核权限定义',384617735855801861,NULL,0,1,384617735855801856,1,'http://localhost:8080/suncms/cmsadmin/privilege/privilegeAudit.jsp'),(384617735855801864,NULL,'2019-03-22 11:18:30','2019-04-03 16:30:08',NULL,'采编权限定义',384617735855801861,NULL,0,1,384617735855801856,1,'http://localhost:8080/suncms/cmsadmin/privilege/privilegeCollection.jsp'),(384617735855801865,NULL,'2019-03-22 11:18:51','2019-04-03 16:30:08',NULL,'超级权限定义',384617735855801861,NULL,0,1,384617735855801856,1,'http://localhost:8080/suncms/cmsadmin/privilege/privilegeSuper.jsp'),(384617735855801866,NULL,'2019-03-22 11:19:36','2019-04-03 16:30:08',NULL,'模板管理',NULL,NULL,0,1,384617735855801856,1,'http://localhost:8080/suncms/cmsadmin/template/template.jsp'),(386077659664227842,NULL,NULL,'2019-03-31 08:19:34',NULL,'登录',0,NULL,0,1,386077659664227840,1,'${HOTEL}/admin/login/login.jsp'),(387769245418670592,NULL,'2019-03-30 23:03:37','2019-03-30 23:03:37',NULL,'主机变量管理',0,NULL,0,1,382832601418695172,1,'/host/index'),(392379626522985993,NULL,NULL,'2019-04-12 09:34:28',NULL,'字典管理',0,NULL,0,1,382832601418695172,1,'/dictionary/index');
/*!40000 ALTER TABLE `module` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `organization`
--

DROP TABLE IF EXISTS `organization`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `organization` (
  `organization_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `comment` varchar(256) DEFAULT NULL COMMENT '备注',
  `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  `update_time` datetime DEFAULT NULL,
  `is_leaf` char(1) NOT NULL COMMENT '是否叶子节点 1是 0否',
  `level` int(4) NOT NULL COMMENT '组织层级,从0开始,由系统维护',
  `organization_code` varchar(256) DEFAULT NULL COMMENT '组织编码64位长度 可以自定义默认为organizationId',
  `organization_name` varchar(256) NOT NULL COMMENT '组织中文名称',
  `organization_name_en` varchar(256) DEFAULT NULL COMMENT '组织英文名称,默认与中文名称一致',
  `parent_id` bigint(20) DEFAULT NULL COMMENT '上级组织的organizationId',
  `sort_no` int(11) NOT NULL COMMENT '排序索引,默认设置为organizationId',
  `state` int(2) NOT NULL COMMENT '状态 0 正常 1禁用 2删除 ',
  PRIMARY KEY (`organization_id`),
  UNIQUE KEY `UK_63cjp5qm2nw5u9f0khcq7q8ue` (`organization_code`)
) ENGINE=InnoDB AUTO_INCREMENT=387363147670897153 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `organization`
--

LOCK TABLES `organization` WRITE;
/*!40000 ALTER TABLE `organization` DISABLE KEYS */;
INSERT INTO `organization` VALUES (382832601418695168,'','2019-03-17 15:46:50','2019-03-17 15:46:50','0',0,'382832601418695168','xone','',0,0,0),(387363147670897152,'','2019-03-29 22:16:06','2019-03-29 22:16:06','1',0,'382832601418695168387363147670897152','tec','',382832601418695168,0,0);
/*!40000 ALTER TABLE `organization` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `person`
--

DROP TABLE IF EXISTS `person`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `person` (
  `person_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `comment` varchar(256) DEFAULT NULL COMMENT '备注',
  `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  `update_time` datetime DEFAULT NULL,
  `alias_name` varchar(128) DEFAULT NULL,
  `birthday` varchar(10) DEFAULT NULL,
  `county_code` varchar(64) DEFAULT NULL COMMENT '行政区划代码',
  `email` varchar(256) DEFAULT NULL COMMENT '邮箱',
  `first_name` varchar(128) NOT NULL,
  `full_name` varchar(128) NOT NULL,
  `identity_no` varchar(32) DEFAULT NULL,
  `last_name` varchar(32) NOT NULL,
  `mobile` varchar(64) DEFAULT NULL COMMENT '手机号',
  `nationality_code` varchar(3) DEFAULT NULL,
  `person_code` varchar(64) DEFAULT NULL,
  `sex` varchar(4) DEFAULT NULL,
  `account_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`person_id`),
  KEY `FKiyv5708nn4k5w34ph5dofk6ag` (`account_id`),
  CONSTRAINT `FKiyv5708nn4k5w34ph5dofk6ag` FOREIGN KEY (`account_id`) REFERENCES `account` (`account_id`)
) ENGINE=InnoDB AUTO_INCREMENT=386458176586787330 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `person`
--

LOCK TABLES `person` WRITE;
/*!40000 ALTER TABLE `person` DISABLE KEYS */;
INSERT INTO `person` VALUES (382832601418695170,NULL,'2019-03-17 15:47:16','2019-03-17 15:47:16',NULL,NULL,NULL,NULL,'web','webmaster',NULL,'master',NULL,'CHN',NULL,NULL,382832601418695169),(386458176586787329,NULL,'2019-03-27 10:34:59','2019-03-27 10:34:59',NULL,NULL,NULL,NULL,'zhang','zhangyao',NULL,'yao',NULL,'CHN',NULL,NULL,386458176586787328);
/*!40000 ALTER TABLE `person` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `person_relations`
--

DROP TABLE IF EXISTS `person_relations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `person_relations` (
  `relations_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `comment` varchar(256) DEFAULT NULL COMMENT '备注',
  `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  `update_time` datetime DEFAULT NULL,
  `active` int(2) NOT NULL COMMENT '在编状态 0不在编 1在编 2移除本组织',
  `organization_id` bigint(20) DEFAULT NULL COMMENT '组织id,引用organization表主键',
  `person_id` bigint(20) DEFAULT NULL COMMENT '人员id,引用person表主键',
  PRIMARY KEY (`relations_id`),
  UNIQUE KEY `PERSON_RELATIONS_FK_INDEX` (`organization_id`,`person_id`)
) ENGINE=InnoDB AUTO_INCREMENT=386458176586787331 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `person_relations`
--

LOCK TABLES `person_relations` WRITE;
/*!40000 ALTER TABLE `person_relations` DISABLE KEYS */;
INSERT INTO `person_relations` VALUES (382832601418695171,NULL,'2019-03-17 15:47:16','2019-03-17 15:47:16',1,382832601418695168,382832601418695170),(386458176586787330,NULL,'2019-03-27 10:34:59','2019-03-27 10:34:59',1,382832601418695168,386458176586787329);
/*!40000 ALTER TABLE `person_relations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `region_city`
--

DROP TABLE IF EXISTS `region_city`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `region_city` (
  `city_code` char(6) NOT NULL COMMENT '城市编码',
  `chinese_code` varchar(32) DEFAULT NULL COMMENT '拼音码',
  `city_name` varchar(64) DEFAULT NULL COMMENT '城市名称',
  `provice_code` char(6) DEFAULT NULL COMMENT '省份编码',
  PRIMARY KEY (`city_code`),
  KEY `FKjio57yi59erqgy74crth1vi8b` (`provice_code`),
  CONSTRAINT `FKjio57yi59erqgy74crth1vi8b` FOREIGN KEY (`provice_code`) REFERENCES `region_province` (`province_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `region_city`
--

LOCK TABLES `region_city` WRITE;
/*!40000 ALTER TABLE `region_city` DISABLE KEYS */;
/*!40000 ALTER TABLE `region_city` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `region_county`
--

DROP TABLE IF EXISTS `region_county`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `region_county` (
  `county_code` char(6) NOT NULL COMMENT '县区代码',
  `chinese_code` varchar(32) DEFAULT NULL COMMENT '拼音码',
  `county_name` varchar(64) DEFAULT NULL COMMENT '县区名称',
  `city_code` char(6) DEFAULT NULL COMMENT '城市编码',
  PRIMARY KEY (`county_code`),
  KEY `FK8f52k4qf1oklljn5f6l2gew5o` (`city_code`),
  CONSTRAINT `FK8f52k4qf1oklljn5f6l2gew5o` FOREIGN KEY (`city_code`) REFERENCES `region_city` (`city_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `region_county`
--

LOCK TABLES `region_county` WRITE;
/*!40000 ALTER TABLE `region_county` DISABLE KEYS */;
/*!40000 ALTER TABLE `region_county` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `region_nationality`
--

DROP TABLE IF EXISTS `region_nationality`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `region_nationality` (
  `nationality_id` char(3) NOT NULL COMMENT '国家代码 ISO标准',
  `iso_code` varchar(128) DEFAULT NULL COMMENT 'ISO代码',
  `name_cn` varchar(256) DEFAULT NULL COMMENT '中文名称',
  `name_en` varchar(256) DEFAULT NULL COMMENT '英文名称',
  `nationality_2code` char(2) DEFAULT NULL COMMENT '国家2位英文代码',
  `nationality_3code` char(3) DEFAULT NULL COMMENT '国家3位英文代码',
  PRIMARY KEY (`nationality_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `region_nationality`
--

LOCK TABLES `region_nationality` WRITE;
/*!40000 ALTER TABLE `region_nationality` DISABLE KEYS */;
/*!40000 ALTER TABLE `region_nationality` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `region_province`
--

DROP TABLE IF EXISTS `region_province`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `region_province` (
  `province_code` char(6) NOT NULL COMMENT '省份编码',
  `chinese_code` varchar(32) DEFAULT NULL COMMENT '省份拼音码',
  `province_name` varchar(64) DEFAULT NULL COMMENT '省份名称',
  `short_name` varchar(64) DEFAULT NULL COMMENT '省份简称',
  `nationality_id` char(3) DEFAULT NULL COMMENT '国家代码 ISO标准',
  PRIMARY KEY (`province_code`),
  KEY `FKcnsfqqbalsrws9k8cnxkwh8ck` (`nationality_id`),
  CONSTRAINT `FKcnsfqqbalsrws9k8cnxkwh8ck` FOREIGN KEY (`nationality_id`) REFERENCES `region_nationality` (`nationality_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `region_province`
--

LOCK TABLES `region_province` WRITE;
/*!40000 ALTER TABLE `region_province` DISABLE KEYS */;
/*!40000 ALTER TABLE `region_province` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `role`
--

DROP TABLE IF EXISTS `role`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `role` (
  `role_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `comment` varchar(256) DEFAULT NULL COMMENT '备注',
  `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  `update_time` datetime DEFAULT NULL,
  `name` varchar(64) NOT NULL,
  `sort_no` int(11) DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  PRIMARY KEY (`role_id`)
) ENGINE=InnoDB AUTO_INCREMENT=386458176586787332 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `role`
--

LOCK TABLES `role` WRITE;
/*!40000 ALTER TABLE `role` DISABLE KEYS */;
INSERT INTO `role` VALUES (382832601418695179,NULL,'2019-03-17 15:56:01','2019-03-17 15:56:01','系统管理员',NULL,NULL),(386458176586787331,NULL,'2019-03-27 10:35:26','2019-03-27 10:35:26','操作员',NULL,NULL);
/*!40000 ALTER TABLE `role` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `role_module`
--

DROP TABLE IF EXISTS `role_module`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `role_module` (
  `role_module_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `comment` varchar(256) DEFAULT NULL COMMENT '备注',
  `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  `update_time` datetime DEFAULT NULL,
  `module_id` bigint(20) DEFAULT NULL,
  `role_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`role_module_id`),
  UNIQUE KEY `ROLE_MODULE_INDEX` (`role_id`,`module_id`)
) ENGINE=InnoDB AUTO_INCREMENT=392379626522986018 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `role_module`
--

LOCK TABLES `role_module` WRITE;
/*!40000 ALTER TABLE `role_module` DISABLE KEYS */;
INSERT INTO `role_module` VALUES (384708355370784256,NULL,'2019-03-22 17:11:58','2019-03-22 17:11:58',384617735855801858,382832601418695179),(384708355370784257,NULL,'2019-03-22 17:11:58','2019-03-22 17:11:58',384617735855801859,382832601418695179),(384708355370784258,NULL,'2019-03-22 17:11:58','2019-03-22 17:11:58',384617735855801860,382832601418695179),(384708355370784259,NULL,'2019-03-22 17:11:58','2019-03-22 17:11:58',384617735855801861,382832601418695179),(384708355370784260,NULL,'2019-03-22 17:11:58','2019-03-22 17:11:58',384617735855801862,382832601418695179),(384708355370784261,NULL,'2019-03-22 17:11:58','2019-03-22 17:11:58',384617735855801863,382832601418695179),(384708355370784262,NULL,'2019-03-22 17:11:58','2019-03-22 17:11:58',384617735855801864,382832601418695179),(384708355370784263,NULL,'2019-03-22 17:11:58','2019-03-22 17:11:58',384617735855801865,382832601418695179),(384708355370784264,NULL,'2019-03-22 17:11:58','2019-03-22 17:11:58',384617735855801866,382832601418695179),(386077659664227843,NULL,'2019-03-26 09:41:13','2019-03-26 09:41:13',386077659664227842,382832601418695179),(386458176586787332,NULL,'2019-03-27 10:35:45','2019-03-27 10:35:45',384617735855801858,386458176586787331),(386458176586787333,NULL,'2019-03-27 10:35:45','2019-03-27 10:35:45',384617735855801859,386458176586787331),(386458176586787334,NULL,'2019-03-27 10:35:45','2019-03-27 10:35:45',384617735855801860,386458176586787331),(386458176586787335,NULL,'2019-03-27 10:35:45','2019-03-27 10:35:45',384617735855801861,386458176586787331),(386458176586787336,NULL,'2019-03-27 10:35:45','2019-03-27 10:35:45',384617735855801862,386458176586787331),(386458176586787337,NULL,'2019-03-27 10:35:45','2019-03-27 10:35:45',384617735855801863,386458176586787331),(386458176586787338,NULL,'2019-03-27 10:35:45','2019-03-27 10:35:45',384617735855801864,386458176586787331),(386458176586787339,NULL,'2019-03-27 10:35:45','2019-03-27 10:35:45',384617735855801865,386458176586787331),(386458176586787340,NULL,'2019-03-27 10:35:45','2019-03-27 10:35:45',384617735855801866,386458176586787331),(386458176586787341,NULL,'2019-03-27 10:35:59','2019-03-27 10:35:59',386077659664227842,386458176586787331),(392379626522986011,NULL,'2019-04-12 09:35:21','2019-04-12 09:35:21',382832601418695174,382832601418695179),(392379626522986012,NULL,'2019-04-12 09:35:21','2019-04-12 09:35:21',382832601418695175,382832601418695179),(392379626522986013,NULL,'2019-04-12 09:35:21','2019-04-12 09:35:21',382832601418695176,382832601418695179),(392379626522986014,NULL,'2019-04-12 09:35:21','2019-04-12 09:35:21',382832601418695177,382832601418695179),(392379626522986015,NULL,'2019-04-12 09:35:21','2019-04-12 09:35:21',382832601418695178,382832601418695179),(392379626522986016,NULL,'2019-04-12 09:35:22','2019-04-12 09:35:22',387769245418670592,382832601418695179),(392379626522986017,NULL,'2019-04-12 09:35:22','2019-04-12 09:35:22',392379626522985993,382832601418695179);
/*!40000 ALTER TABLE `role_module` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `role_person`
--

DROP TABLE IF EXISTS `role_person`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `role_person` (
  `role_person_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `comment` varchar(256) DEFAULT NULL COMMENT '备注',
  `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  `update_time` datetime DEFAULT NULL,
  `person_id` bigint(20) DEFAULT NULL,
  `role_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`role_person_id`),
  UNIQUE KEY `ROLE_PERSON_INDEX` (`role_id`,`person_id`)
) ENGINE=InnoDB AUTO_INCREMENT=386458176586787343 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `role_person`
--

LOCK TABLES `role_person` WRITE;
/*!40000 ALTER TABLE `role_person` DISABLE KEYS */;
INSERT INTO `role_person` VALUES (384617735855801899,NULL,'2019-03-22 11:22:22','2019-03-22 11:22:22',382832601418695170,382832601418695179),(386458176586787342,NULL,'2019-03-27 10:36:15','2019-03-27 10:36:15',386458176586787329,386458176586787331);
/*!40000 ALTER TABLE `role_person` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sessions`
--

DROP TABLE IF EXISTS `sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sessions` (
  `primary_id` char(36) NOT NULL,
  `session_id` char(36) NOT NULL,
  `creation_time` bigint(20) NOT NULL,
  `last_access_time` bigint(20) NOT NULL,
  `max_inactive_interval` int(11) NOT NULL,
  `expiry_time` bigint(20) NOT NULL,
  `principal_name` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`primary_id`),
  UNIQUE KEY `sessions_ix1` (`session_id`),
  KEY `sessions_ix2` (`expiry_time`),
  KEY `sessions_ix3` (`principal_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sessions`
--

LOCK TABLES `sessions` WRITE;
/*!40000 ALTER TABLE `sessions` DISABLE KEYS */;
INSERT INTO `sessions` VALUES ('e012cd30-0db2-4cd4-8eba-af58110577c8','eb58cf1e-763b-41e2-a2f1-94713e7d923a',1558259882858,1558259976037,1800,1558261776037,'{\"accountId\":382832601418695169,\"accountCode\":\"webmaster\",\"fullName\":\"webmaster\",\"personId\":\"382832601418695170\"}');
/*!40000 ALTER TABLE `sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sessions_attributes`
--

DROP TABLE IF EXISTS `sessions_attributes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sessions_attributes` (
  `session_primary_id` char(36) NOT NULL,
  `attribute_name` varchar(200) NOT NULL,
  `attribute_bytes` blob NOT NULL,
  PRIMARY KEY (`session_primary_id`,`attribute_name`),
  CONSTRAINT `sessions_attributes_fk` FOREIGN KEY (`session_primary_id`) REFERENCES `sessions` (`primary_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sessions_attributes`
--


--
-- Table structure for table `sub_system`
--

DROP TABLE IF EXISTS `sub_system`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sub_system` (
  `sub_system_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `comment` varchar(256) DEFAULT NULL COMMENT '备注',
  `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  `update_time` datetime DEFAULT NULL,
  `code` varchar(64) NOT NULL COMMENT '子系统编码',
  `name` varchar(64) NOT NULL COMMENT '名称',
  `status` int(2) NOT NULL COMMENT '状态 0未激活 1激活 2禁用 3删除',
  PRIMARY KEY (`sub_system_id`)
) ENGINE=InnoDB AUTO_INCREMENT=386077659664227841 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sub_system`
--

LOCK TABLES `sub_system` WRITE;
/*!40000 ALTER TABLE `sub_system` DISABLE KEYS */;
INSERT INTO `sub_system` VALUES (382832601418695172,NULL,'2019-03-17 15:48:23','2019-03-17 15:48:23','SYSTEM_ADMIN','系统管理子系统',0),(384617735855801856,NULL,'2019-03-22 11:13:55','2019-03-22 11:13:55','CMS_SYSTEM','内容管理子系统',0),(386077659664227840,NULL,'2019-03-26 09:39:25','2019-03-26 09:39:25','HOTEL_SYSTEM','酒店管理子系统',0);
/*!40000 ALTER TABLE `sub_system` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sub_system_relations`
--

DROP TABLE IF EXISTS `sub_system_relations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sub_system_relations` (
  `relations_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `comment` varchar(256) DEFAULT NULL COMMENT '备注',
  `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  `update_time` datetime DEFAULT NULL,
  `active` int(2) NOT NULL COMMENT '状态 0不启用 1启用 ',
  `organization_id` bigint(20) DEFAULT NULL COMMENT '组织id,引用organization表主键',
  `sub_system_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`relations_id`),
  UNIQUE KEY `SUB_SYSTEM_RELATIONS_INDEX` (`organization_id`,`sub_system_id`)
) ENGINE=InnoDB AUTO_INCREMENT=386077659664227842 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sub_system_relations`
--

LOCK TABLES `sub_system_relations` WRITE;
/*!40000 ALTER TABLE `sub_system_relations` DISABLE KEYS */;
INSERT INTO `sub_system_relations` VALUES (382832601418695173,NULL,'2019-03-17 15:48:23','2019-03-17 15:48:23',1,382832601418695168,382832601418695172),(384617735855801857,NULL,'2019-03-22 11:13:55','2019-03-22 11:13:55',1,382832601418695168,384617735855801856),(386077659664227841,NULL,'2019-03-26 09:39:25','2019-03-26 09:39:25',1,382832601418695168,386077659664227840);
/*!40000 ALTER TABLE `sub_system_relations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `system_log`
--

DROP TABLE IF EXISTS `system_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `system_log` (
  `system_log_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `comment` varchar(256) DEFAULT NULL COMMENT '备注',
  `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  `update_time` datetime DEFAULT NULL,
  `account_code` varchar(255) DEFAULT NULL,
  `account_id` bigint(20) DEFAULT NULL,
  `args` varchar(4096) DEFAULT NULL,
  `clazz` varchar(255) DEFAULT NULL,
  `full_name` varchar(255) DEFAULT NULL,
  `host` varchar(255) DEFAULT NULL,
  `method` varchar(255) DEFAULT NULL,
  `packages` varchar(255) DEFAULT NULL,
  `person_id` bigint(20) DEFAULT NULL,
  `start_time` datetime DEFAULT NULL,
  `times` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`system_log_id`)
) ENGINE=InnoDB AUTO_INCREMENT=406242041492721173 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `system_log`
--

-- Table structure for table `worker_node_entity`
--

DROP TABLE IF EXISTS `worker_node_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `worker_node_entity` (
  `id` bigint(20) NOT NULL,
  `created` datetime DEFAULT NULL,
  `host_name` varchar(255) DEFAULT NULL,
  `launch_date` datetime DEFAULT NULL,
  `modified` datetime DEFAULT NULL,
  `port` varchar(255) DEFAULT NULL,
  `type` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `worker_node_entity`
--

LOCK TABLES `worker_node_entity` WRITE;
/*!40000 ALTER TABLE `worker_node_entity` DISABLE KEYS */;
INSERT INTO `worker_node_entity` VALUES (1,'2019-03-22 11:12:38','192.168.1.108','2019-03-22 11:12:34','2019-03-22 11:12:38','1553224358086-28971',2),(2,'2019-03-22 11:12:38','192.168.1.108','2019-03-22 11:12:38','2019-03-22 11:12:38','1553224358313-96239',2),(3,'2019-03-22 11:13:14','192.168.1.108','2019-03-22 11:13:09','2019-03-22 11:13:14','1553224394230-57001',2),(4,'2019-03-22 11:13:14','192.168.1.108','2019-03-22 11:13:14','2019-03-22 11:13:14','1553224394492-90377',2),(5,'2019-03-22 11:36:45','192.168.1.108','2019-03-22 11:36:44','2019-03-22 11:36:45','1553225804578-76286',2),(6,'2019-03-22 11:36:45','192.168.1.108','2019-03-22 11:36:45','2019-03-22 11:36:45','1553225804775-74197',2),(7,'2019-03-22 17:01:52','192.168.0.9','2019-03-22 17:01:51','2019-03-22 17:01:52','1553245311512-95425',2),(8,'2019-03-22 17:01:52','192.168.0.9','2019-03-22 17:01:52','2019-03-22 17:01:52','1553245311719-76932',2),(9,'2019-03-22 17:04:07','192.168.0.9','2019-03-22 17:04:07','2019-03-22 17:04:07','1553245447118-13369',2),(10,'2019-03-22 17:04:07','192.168.0.9','2019-03-22 17:04:07','2019-03-22 17:04:07','1553245447342-39962',2),(11,'2019-03-22 17:04:54','192.168.0.9','2019-03-22 17:04:53','2019-03-22 17:04:54','1553245493417-34371',2),(12,'2019-03-22 17:04:54','192.168.0.9','2019-03-22 17:04:54','2019-03-22 17:04:54','1553245493632-45162',2),(13,'2019-03-22 20:44:38','192.168.3.107','2019-03-22 20:44:38','2019-03-22 20:44:38','1553258678088-60042',2),(14,'2019-03-22 20:44:38','192.168.3.107','2019-03-22 20:44:38','2019-03-22 20:44:38','1553258678278-26062',2),(15,'2019-03-26 09:38:29','192.168.0.3','2019-03-26 09:38:29','2019-03-26 09:38:29','1553564308902-86135',2),(16,'2019-03-26 09:38:29','192.168.0.3','2019-03-26 09:38:29','2019-03-26 09:38:29','1553564309119-34116',2),(17,'2019-03-26 14:13:32','192.168.0.3','2019-03-26 14:13:31','2019-03-26 14:13:32','1553580811549-62056',2),(18,'2019-03-26 14:13:32','192.168.0.3','2019-03-26 14:13:32','2019-03-26 14:13:32','1553580811818-83209',2),(19,'2019-03-26 16:39:32','192.168.0.3','2019-03-26 16:39:31','2019-03-26 16:39:32','1553589571649-42932',2),(20,'2019-03-26 16:39:32','192.168.0.3','2019-03-26 16:39:32','2019-03-26 16:39:32','1553589571937-64118',2),(21,'2019-03-27 10:15:05','192.168.0.5','2019-03-27 10:15:05','2019-03-27 10:15:05','1553652905379-75346',2),(22,'2019-03-27 10:15:06','192.168.0.5','2019-03-27 10:15:06','2019-03-27 10:15:06','1553652905582-12709',2),(23,'2019-03-29 14:58:33','192.168.0.7','2019-03-29 14:58:32','2019-03-29 14:58:33','1553842712533-31373',2),(24,'2019-03-29 14:58:33','192.168.0.7','2019-03-29 14:58:33','2019-03-29 14:58:33','1553842712780-48678',2),(25,'2019-03-29 15:04:50','192.168.0.7','2019-03-29 15:04:50','2019-03-29 15:04:50','1553843090078-5157',2),(26,'2019-03-29 15:04:50','192.168.0.7','2019-03-29 15:04:50','2019-03-29 15:04:50','1553843090332-14543',2),(27,'2019-03-29 15:47:18','192.168.0.7','2019-03-29 15:47:17','2019-03-29 15:47:18','1553845637472-24307',2),(28,'2019-03-29 15:47:18','192.168.0.7','2019-03-29 15:47:18','2019-03-29 15:47:18','1553845637653-68320',2),(29,'2019-03-29 16:24:54','192.168.0.7','2019-03-29 16:24:54','2019-03-29 16:24:54','1553847894092-52695',2),(30,'2019-03-29 16:24:54','192.168.0.7','2019-03-29 16:24:54','2019-03-29 16:24:54','1553847894137-68671',2),(31,'2019-03-29 16:27:02','192.168.0.7','2019-03-29 16:27:01','2019-03-29 16:27:02','1553848021557-6985',2),(32,'2019-03-29 16:27:02','192.168.0.7','2019-03-29 16:27:02','2019-03-29 16:27:02','1553848021614-586',2),(33,'2019-03-29 20:46:51','192.168.3.107','2019-03-29 20:46:50','2019-03-29 20:46:51','1553863610375-72185',2),(34,'2019-03-29 20:46:51','192.168.3.107','2019-03-29 20:46:51','2019-03-29 20:46:51','1553863610714-17896',2),(35,'2019-03-29 22:26:08','192.168.3.107','2019-03-29 22:26:08','2019-03-29 22:26:08','1553869567737-6523',2),(36,'2019-03-29 22:26:08','192.168.3.107','2019-03-29 22:26:08','2019-03-29 22:26:08','1553869567910-26085',2),(37,'2019-03-30 23:02:43','192.168.3.107','2019-03-30 23:02:42','2019-03-30 23:02:43','1553958162674-21031',2),(38,'2019-03-30 23:02:43','192.168.3.107','2019-03-30 23:02:43','2019-03-30 23:02:43','1553958162869-34937',2),(39,'2019-03-31 08:03:30','192.168.3.107','2019-03-31 08:03:30','2019-03-31 08:03:30','1553990609787-65570',2),(40,'2019-03-31 08:03:30','192.168.3.107','2019-03-31 08:03:30','2019-03-31 08:03:30','1553990609946-5191',2),(41,'2019-03-31 08:12:49','192.168.3.107','2019-03-31 08:12:49','2019-03-31 08:12:49','1553991168845-64276',2),(42,'2019-03-31 08:12:49','192.168.3.107','2019-03-31 08:12:49','2019-03-31 08:12:49','1553991168891-95427',2),(43,'2019-03-31 13:30:53','192.168.3.107','2019-03-31 13:30:53','2019-03-31 13:30:53','1554010253425-10526',2),(44,'2019-03-31 13:30:54','192.168.3.107','2019-03-31 13:30:54','2019-03-31 13:30:54','1554010253596-54355',2),(45,'2019-03-31 15:13:36','192.168.3.107','2019-03-31 15:13:35','2019-03-31 15:13:36','1554016415521-15811',2),(46,'2019-03-31 15:13:36','192.168.3.107','2019-03-31 15:13:36','2019-03-31 15:13:36','1554016415569-19801',2),(47,'2019-03-31 21:33:33','192.168.3.107','2019-03-31 21:33:33','2019-03-31 21:33:33','1554039213395-92339',2),(48,'2019-03-31 21:33:34','192.168.3.107','2019-03-31 21:33:34','2019-03-31 21:33:34','1554039213558-40261',2),(49,'2019-03-31 21:39:38','192.168.3.107','2019-03-31 21:39:38','2019-03-31 21:39:38','1554039577980-94239',2),(50,'2019-03-31 21:39:38','192.168.3.107','2019-03-31 21:39:38','2019-03-31 21:39:38','1554039578185-8789',2),(51,'2019-03-31 21:41:58','192.168.3.107','2019-03-31 21:41:58','2019-03-31 21:41:58','1554039718473-35031',2),(52,'2019-03-31 21:41:59','192.168.3.107','2019-03-31 21:41:59','2019-03-31 21:41:59','1554039718521-75911',2),(53,'2019-03-31 21:42:29','192.168.3.107','2019-03-31 21:42:28','2019-03-31 21:42:29','1554039748594-128',2),(54,'2019-03-31 21:42:29','192.168.3.107','2019-03-31 21:42:29','2019-03-31 21:42:29','1554039748754-5961',2),(55,'2019-03-31 21:43:58','192.168.3.107','2019-03-31 21:43:58','2019-03-31 21:43:58','1554039837857-69774',2),(56,'2019-03-31 21:43:58','192.168.3.107','2019-03-31 21:43:58','2019-03-31 21:43:58','1554039837913-92631',2),(57,'2019-04-03 16:03:23','192.168.0.8','2019-04-03 16:03:20','2019-04-03 16:03:23','1554278602941-79911',2),(58,'2019-04-03 16:03:24','192.168.0.8','2019-04-03 16:03:24','2019-04-03 16:03:24','1554278603862-26757',2),(59,'2019-04-03 16:06:44','192.168.0.8','2019-04-03 16:06:43','2019-04-03 16:06:44','1554278803512-21814',2),(60,'2019-04-03 16:06:44','192.168.0.8','2019-04-03 16:06:44','2019-04-03 16:06:44','1554278803560-24544',2),(61,'2019-04-03 16:16:38','192.168.0.8','2019-04-03 16:16:38','2019-04-03 16:16:38','1554279398334-60198',2),(62,'2019-04-03 16:16:38','192.168.0.8','2019-04-03 16:16:38','2019-04-03 16:16:38','1554279398404-84302',2),(63,'2019-04-03 16:19:02','192.168.0.8','2019-04-03 16:19:02','2019-04-03 16:19:02','1554279542251-19942',2),(64,'2019-04-03 16:19:02','192.168.0.8','2019-04-03 16:19:02','2019-04-03 16:19:02','1554279542425-99219',2),(65,'2019-04-03 16:23:10','192.168.0.8','2019-04-03 16:23:10','2019-04-03 16:23:10','1554279790369-36009',2),(66,'2019-04-03 16:23:11','192.168.0.8','2019-04-03 16:23:11','2019-04-03 16:23:11','1554279790536-76370',2),(67,'2019-04-03 16:26:48','192.168.0.8','2019-04-03 16:26:48','2019-04-03 16:26:48','1554280008013-74923',2),(68,'2019-04-03 16:26:48','192.168.0.8','2019-04-03 16:26:48','2019-04-03 16:26:48','1554280008187-89724',2),(69,'2019-04-03 16:28:20','192.168.0.8','2019-04-03 16:28:20','2019-04-03 16:28:20','1554280100047-60608',2),(70,'2019-04-03 16:28:20','192.168.0.8','2019-04-03 16:28:20','2019-04-03 16:28:20','1554280100101-99219',2),(71,'2019-04-03 16:34:22','192.168.0.8','2019-04-03 16:34:22','2019-04-03 16:34:22','1554280461848-97303',2),(72,'2019-04-03 16:34:22','192.168.0.8','2019-04-03 16:34:22','2019-04-03 16:34:22','1554280461899-6362',2),(73,'2019-04-03 17:29:31','192.168.0.8','2019-04-03 17:29:30','2019-04-03 17:29:31','1554283770435-84132',2),(74,'2019-04-03 17:29:31','192.168.0.8','2019-04-03 17:29:31','2019-04-03 17:29:31','1554283770679-31058',2),(75,'2019-04-04 14:37:46','192.168.0.10','2019-04-04 14:37:46','2019-04-04 14:37:46','1554359866282-38122',2),(76,'2019-04-04 14:37:46','192.168.0.10','2019-04-04 14:37:46','2019-04-04 14:37:46','1554359866467-18972',2),(77,'2019-04-04 14:43:46','192.168.0.10','2019-04-04 14:43:45','2019-04-04 14:43:46','1554360225601-10752',2),(78,'2019-04-04 14:43:46','192.168.0.10','2019-04-04 14:43:46','2019-04-04 14:43:46','1554360225769-34916',2),(79,'2019-04-04 16:54:17','192.168.0.10','2019-04-04 16:54:17','2019-04-04 16:54:17','1554368056755-36994',2),(80,'2019-04-04 16:54:17','192.168.0.10','2019-04-04 16:54:17','2019-04-04 16:54:17','1554368056958-21039',2),(81,'2019-04-04 16:55:19','192.168.0.10','2019-04-04 16:55:19','2019-04-04 16:55:19','1554368119157-76908',2),(82,'2019-04-04 16:55:19','192.168.0.10','2019-04-04 16:55:19','2019-04-04 16:55:19','1554368119320-65690',2),(83,'2019-04-04 16:56:34','192.168.0.10','2019-04-04 16:56:34','2019-04-04 16:56:34','1554368194114-90003',2),(84,'2019-04-04 16:56:34','192.168.0.10','2019-04-04 16:56:34','2019-04-04 16:56:34','1554368194280-63322',2),(85,'2019-04-04 17:01:01','192.168.0.10','2019-04-04 17:01:01','2019-04-04 17:01:01','1554368460875-18682',2),(86,'2019-04-04 17:01:01','192.168.0.10','2019-04-04 17:01:01','2019-04-04 17:01:01','1554368461034-59752',2),(87,'2019-04-04 17:04:58','192.168.0.10','2019-04-04 17:04:58','2019-04-04 17:04:58','1554368697850-14573',2),(88,'2019-04-04 17:04:58','192.168.0.10','2019-04-04 17:04:58','2019-04-04 17:04:58','1554368697898-67944',2),(89,'2019-04-04 17:05:12','192.168.0.10','2019-04-04 17:05:12','2019-04-04 17:05:12','1554368712263-52662',2),(90,'2019-04-04 17:05:12','192.168.0.10','2019-04-04 17:05:12','2019-04-04 17:05:12','1554368712427-51956',2),(91,'2019-04-04 17:06:02','192.168.0.10','2019-04-04 17:06:02','2019-04-04 17:06:02','1554368761895-95813',2),(92,'2019-04-04 17:06:02','192.168.0.10','2019-04-04 17:06:02','2019-04-04 17:06:02','1554368762126-78138',2),(93,'2019-04-04 17:08:12','192.168.0.10','2019-04-04 17:08:11','2019-04-04 17:08:12','1554368891516-20632',2),(94,'2019-04-04 17:08:12','192.168.0.10','2019-04-04 17:08:12','2019-04-04 17:08:12','1554368891563-74309',2),(95,'2019-04-04 17:22:02','192.168.0.10','2019-04-04 17:22:02','2019-04-04 17:22:02','1554369721749-71603',2),(96,'2019-04-04 17:22:02','192.168.0.10','2019-04-04 17:22:02','2019-04-04 17:22:02','1554369721992-54667',2),(97,'2019-04-11 16:31:35','192.168.0.8','2019-04-11 16:31:35','2019-04-11 16:31:35','1554971495149-62496',2),(98,'2019-04-11 16:31:35','192.168.0.8','2019-04-11 16:31:35','2019-04-11 16:31:35','1554971495334-15836',2),(99,'2019-04-12 09:13:20','192.168.0.8','2019-04-12 09:13:20','2019-04-12 09:13:20','1555031600366-99617',2),(100,'2019-04-12 09:13:21','192.168.0.8','2019-04-12 09:13:21','2019-04-12 09:13:21','1555031600746-3349',2),(101,'2019-04-12 10:23:59','192.168.0.8','2019-04-12 10:23:58','2019-04-12 10:23:59','1555035838706-32568',2),(102,'2019-04-12 10:23:59','192.168.0.8','2019-04-12 10:23:59','2019-04-12 10:23:59','1555035838879-9987',2),(103,'2019-05-19 17:46:35','192.168.3.65','2019-05-19 17:46:35','2019-05-19 17:46:35','1558259195251-68872',2),(104,'2019-05-19 17:46:35','192.168.3.65','2019-05-19 17:46:35','2019-05-19 17:46:35','1558259195417-13368',2);
/*!40000 ALTER TABLE `worker_node_entity` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET [email protected]_TIME_ZONE */;

/*!40101 SET [email protected]_SQL_MODE */;
/*!40014 SET [email protected]_FOREIGN_KEY_CHECKS */;
/*!40014 SET [email protected]_UNIQUE_CHECKS */;
/*!40101 SET [email protected]_CHARACTER_SET_CLIENT */;
/*!40101 SET [email protected]_CHARACTER_SET_RESULTS */;
/*!40101 SET [email protected]_COLLATION_CONNECTION */;
/*!40111 SET [email protected]_SQL_NOTES */;

-- Dump completed on 2019-05-19 18:18:03