/*
Navicat Premium Data Transfer
Source Server : 博物馆-测试
Source Server Type : MySQL
Source Server Version : 80020
Source Host : 122.51.150.70:3306
Source Schema : museum_cloud_db
Target Server Type : MySQL
Target Server Version : 80020
File Encoding : 65001
Date: 17/04/2024 17:41:19
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for gen_table
-- ----------------------------
DROP TABLE IF EXISTS `gen_table`;
CREATE TABLE `gen_table` (
`table_id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号',
`table_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '表名称',
`table_comment` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '表描述',
`sub_table_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '关联子表的表名',
`sub_table_fk_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '子表关联的外键名',
`class_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '实体类名称',
`tpl_category` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT 'crud' COMMENT '使用的模板(crud单表操作 tree树表操作)',
`tpl_web_type` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '前端模板类型(element-ui模版 element-plus模版)',
`package_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '生成包路径',
`module_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '生成模块名',
`business_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '生成业务名',
`function_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '生成功能名',
`function_author` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '生成功能作者',
`gen_type` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '生成代码方式(0zip压缩包 1自定义路径)',
`gen_path` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '/' COMMENT '生成路径(不填默认项目路径)',
`options` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '其它生成选项',
`create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '创建者',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '更新者',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`table_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 16 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '代码生成业务表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of gen_table
-- ----------------------------
INSERT INTO `gen_table` VALUES (1, 'tb_banner', '轮播图管理', NULL, NULL, 'TbBanner', 'crud', 'element-ui', 'com.xiaoniu.museum', 'museum', 'banner', '轮播图管理', 'xiaoniu', '0', '/', '{\"parentMenuId\":\"2000\"}', 'admin', '2024-04-12 22:12:52', '', '2024-04-13 10:19:38', NULL);
INSERT INTO `gen_table` VALUES (4, 'tb_information', '最新资讯', NULL, NULL, 'TbInformation', 'crud', 'element-ui', 'com.xiaoniu.museum', 'museum', 'information', '最新资讯', 'xiaoniu', '0', '/', '{\"parentMenuId\":2000}', 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:56:37', NULL);
INSERT INTO `gen_table` VALUES (5, 'tb_notice', '活动公告', NULL, NULL, 'TbNotice', 'crud', 'element-ui', 'com.xiaoniu.museum', 'museum', 'notice', '活动公告', 'xiaoniu', '0', '/', '{\"parentMenuId\":2000}', 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:57:19', NULL);
INSERT INTO `gen_table` VALUES (6, 'tb_member_user', '用户信息', NULL, NULL, 'TbMemberUser', 'crud', 'element-ui', 'com.xiaoniu.museum', 'museum', 'memberUser', '用户信息', 'xiaoniu', '0', '/', '{\"parentMenuId\":2000}', 'admin', '2024-04-13 22:49:55', '', '2024-04-13 22:51:05', NULL);
INSERT INTO `gen_table` VALUES (7, 'tb_rule', '平台规则', NULL, NULL, 'TbRule', 'crud', 'element-ui', 'com.xiaoniu.museum', 'museum', 'rule', '平台规则', 'xiaoniu', '0', '/', '{\"parentMenuId\":2000}', 'admin', '2024-04-14 01:37:35', '', '2024-04-14 01:44:11', NULL);
INSERT INTO `gen_table` VALUES (8, 'tb_feedback', '用户投诉', NULL, NULL, 'TbFeedback', 'crud', 'element-ui', 'com.xiaoniu.museum', 'museum', 'feedback', '用户投诉', 'xiaoniu', '0', '/', '{\"parentMenuId\":2000}', 'admin', '2024-04-14 02:10:44', '', '2024-04-14 02:11:47', NULL);
INSERT INTO `gen_table` VALUES (9, 'tb_museum_class', '博物馆分类', NULL, NULL, 'TbMuseumClass', 'crud', 'element-ui', 'com.xiaoniu.museum', 'museum', 'museumClass', '博物馆分类', 'xiaoniu', '0', '/', '{\"parentMenuId\":2000}', 'admin', '2024-04-14 03:03:54', '', '2024-04-14 03:04:37', NULL);
INSERT INTO `gen_table` VALUES (10, 'tb_museum', '博物馆信息', NULL, NULL, 'TbMuseum', 'crud', 'element-ui', 'com.xiaoniu.museum', 'museum', 'museum', '博物馆信息', 'xiaoniu', '0', '/', '{\"parentMenuId\":2000}', 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48', NULL);
INSERT INTO `gen_table` VALUES (11, 'tb_region', '省市区', NULL, NULL, 'TbRegion', 'crud', 'element-ui', 'com.xiaoniu.museum', 'museum', 'region', '省市区', 'xiaoniu', '0', '/', '{}', 'admin', '2024-04-14 16:23:52', '', '2024-04-14 16:24:05', NULL);
INSERT INTO `gen_table` VALUES (12, 'tb_museum_mechanism', '博物馆机构', NULL, NULL, 'TbMuseumMechanism', 'crud', 'element-ui', 'com.xiaoniu.museum', 'museum', 'museumMechanism', '博物馆机构', 'xiaoniu', '0', '/', '{\"parentMenuId\":2000}', 'admin', '2024-04-14 21:30:53', '', '2024-04-14 21:31:32', NULL);
INSERT INTO `gen_table` VALUES (13, 'tb_holiday', '节假日', NULL, NULL, 'TbHoliday', 'crud', 'element-ui', 'com.xiaoniu.museum', 'museum', 'holiday', '节假日', 'xiaoniu', '0', '/', '{\"parentMenuId\":2000}', 'admin', '2024-04-14 21:51:32', '', '2024-04-14 21:57:54', NULL);
INSERT INTO `gen_table` VALUES (14, 'tb_holiday_passenger', '节假日客流', NULL, NULL, 'TbHolidayPassenger', 'crud', 'element-ui', 'com.xiaoniu.museum', 'museum', 'holidayPassenger', '节假日客流', 'xiaoniu', '0', '/', '{\"parentMenuId\":\"2000\"}', 'admin', '2024-04-14 21:56:23', '', '2024-04-14 22:56:42', NULL);
INSERT INTO `gen_table` VALUES (15, 'tb_access_log', '用户访问日志', NULL, NULL, 'TbAccessLog', 'crud', 'element-ui', 'com.xiaoniu.museum', 'museum', 'accessLog', '用户访问日志', 'xiaoniu', '0', '/', '{\"parentMenuId\":2068}', 'admin', '2024-04-14 23:50:46', '', '2024-04-14 23:51:08', NULL);
-- ----------------------------
-- Table structure for gen_table_column
-- ----------------------------
DROP TABLE IF EXISTS `gen_table_column`;
CREATE TABLE `gen_table_column` (
`column_id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号',
`table_id` bigint NULL DEFAULT NULL COMMENT '归属表编号',
`column_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '列名称',
`column_comment` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '列描述',
`column_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '列类型',
`java_type` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT 'JAVA类型',
`java_field` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT 'JAVA字段名',
`is_pk` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '是否主键(1是)',
`is_increment` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '是否自增(1是)',
`is_required` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '是否必填(1是)',
`is_insert` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '是否为插入字段(1是)',
`is_edit` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '是否编辑字段(1是)',
`is_list` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '是否列表字段(1是)',
`is_query` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '是否查询字段(1是)',
`query_type` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT 'EQ' COMMENT '查询方式(等于、不等于、大于、小于、范围)',
`html_type` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '显示类型(文本框、文本域、下拉框、复选框、单选框、日期控件)',
`dict_type` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '字典类型',
`sort` int NULL DEFAULT NULL COMMENT '排序',
`create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '创建者',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '更新者',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`column_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 216 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '代码生成业务表字段' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of gen_table_column
-- ----------------------------
INSERT INTO `gen_table_column` VALUES (1, 1, 'banner_id', '轮播图ID', 'bigint', 'Long', 'bannerId', '1', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 1, 'admin', '2024-04-12 22:12:52', '', '2024-04-13 10:19:38');
INSERT INTO `gen_table_column` VALUES (2, 1, 'banner_title', '轮播图标题', 'varchar(255)', 'String', 'bannerTitle', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2024-04-12 22:12:52', '', '2024-04-13 10:19:38');
INSERT INTO `gen_table_column` VALUES (3, 1, 'banner_jump', '轮播图跳转类型(0-不跳转,1-最新展讯,2-活动公告,3-博物馆信息)', 'int', 'Long', 'bannerJump', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2024-04-12 22:12:52', '', '2024-04-13 10:19:38');
INSERT INTO `gen_table_column` VALUES (4, 1, 'jump_res_id', '跳转资源ID', 'bigint', 'Long', 'jumpResId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2024-04-12 22:12:52', '', '2024-04-13 10:19:38');
INSERT INTO `gen_table_column` VALUES (5, 1, 'banner_url', '轮播图链接', 'varchar(255)', 'String', 'bannerUrl', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2024-04-12 22:12:52', '', '2024-04-13 10:19:38');
INSERT INTO `gen_table_column` VALUES (6, 1, 'sort', '排序', 'int', 'Long', 'sort', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2024-04-12 22:12:52', '', '2024-04-13 10:19:38');
INSERT INTO `gen_table_column` VALUES (7, 1, 'status', '状态(0-显示,1-隐藏)', 'int', 'Long', 'status', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2024-04-12 22:12:52', '', '2024-04-13 10:19:38');
INSERT INTO `gen_table_column` VALUES (8, 1, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', '1', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 8, 'admin', '2024-04-12 22:12:52', '', '2024-04-13 10:19:38');
INSERT INTO `gen_table_column` VALUES (9, 1, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 9, 'admin', '2024-04-12 22:12:52', '', '2024-04-13 10:19:38');
INSERT INTO `gen_table_column` VALUES (10, 1, 'delete_time', '删除时间', 'datetime', 'Date', 'deleteTime', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 10, 'admin', '2024-04-12 22:12:52', '', '2024-04-13 10:19:38');
INSERT INTO `gen_table_column` VALUES (11, 1, 'create_by', '创建者', 'varchar(255)', 'String', 'createBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 11, 'admin', '2024-04-12 22:12:52', '', '2024-04-13 10:19:38');
INSERT INTO `gen_table_column` VALUES (12, 1, 'update_by', '更新者', 'varchar(255)', 'String', 'updateBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 12, 'admin', '2024-04-12 22:12:52', '', '2024-04-13 10:19:38');
INSERT INTO `gen_table_column` VALUES (13, 1, 'delete_by', '删除者', 'varchar(255)', 'String', 'deleteBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 13, 'admin', '2024-04-12 22:12:52', '', '2024-04-13 10:19:38');
INSERT INTO `gen_table_column` VALUES (14, 1, 'del_flag', '删除标记(0-正常,1-删除)', 'int', 'Long', 'delFlag', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 14, 'admin', '2024-04-12 22:12:52', '', '2024-04-13 10:19:38');
INSERT INTO `gen_table_column` VALUES (45, 4, 'information_id', '资讯ID', 'bigint', 'Long', 'informationId', '1', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 1, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:56:37');
INSERT INTO `gen_table_column` VALUES (46, 4, 'information_title', '标题', 'varchar(255)', 'String', 'informationTitle', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:56:37');
INSERT INTO `gen_table_column` VALUES (47, 4, 'information_image', '展示图', 'varchar(255)', 'String', 'informationImage', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'imageUpload', '', 3, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:56:37');
INSERT INTO `gen_table_column` VALUES (48, 4, 'information_intro', '简介', 'varchar(255)', 'String', 'informationIntro', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:56:37');
INSERT INTO `gen_table_column` VALUES (49, 4, 'museum_id', '博物馆ID', 'bigint', 'Long', 'museumId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:56:37');
INSERT INTO `gen_table_column` VALUES (50, 4, 'view_count', '浏览量', 'int', 'Long', 'viewCount', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:56:37');
INSERT INTO `gen_table_column` VALUES (51, 4, 'information_content', '资讯内容', 'text', 'String', 'informationContent', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'editor', '', 7, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:56:37');
INSERT INTO `gen_table_column` VALUES (52, 4, 'status', '状态(0-显示,1-隐藏)', 'int', 'Integer', 'status', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 8, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:56:37');
INSERT INTO `gen_table_column` VALUES (53, 4, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', '1', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 9, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:56:37');
INSERT INTO `gen_table_column` VALUES (54, 4, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 10, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:56:37');
INSERT INTO `gen_table_column` VALUES (55, 4, 'delete_time', '删除时间', 'datetime', 'Date', 'deleteTime', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 11, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:56:37');
INSERT INTO `gen_table_column` VALUES (56, 4, 'create_by', '创建者', 'varchar(255)', 'String', 'createBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 12, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:56:37');
INSERT INTO `gen_table_column` VALUES (57, 4, 'update_by', '更新者', 'varchar(255)', 'String', 'updateBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 13, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:56:37');
INSERT INTO `gen_table_column` VALUES (58, 4, 'delete_by', '删除者', 'varchar(255)', 'String', 'deleteBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 14, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:56:37');
INSERT INTO `gen_table_column` VALUES (59, 4, 'del_flag', '删除标记(0-正常,1-删除)', 'int', 'Integer', 'delFlag', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 15, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:56:37');
INSERT INTO `gen_table_column` VALUES (60, 5, 'notice_id', '公告ID', 'bigint', 'Long', 'noticeId', '1', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 1, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:57:19');
INSERT INTO `gen_table_column` VALUES (61, 5, 'notice_title', '标题', 'varchar(255)', 'String', 'noticeTitle', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:57:19');
INSERT INTO `gen_table_column` VALUES (62, 5, 'notice_image', '展示图', 'varchar(255)', 'String', 'noticeImage', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'imageUpload', '', 3, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:57:19');
INSERT INTO `gen_table_column` VALUES (63, 5, 'notice_intro', '简介', 'varchar(255)', 'String', 'noticeIntro', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:57:19');
INSERT INTO `gen_table_column` VALUES (64, 5, 'museum_id', '博物馆ID', 'bigint', 'Long', 'museumId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:57:19');
INSERT INTO `gen_table_column` VALUES (65, 5, 'view_count', '浏览量', 'int', 'Long', 'viewCount', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:57:19');
INSERT INTO `gen_table_column` VALUES (66, 5, 'notice_content', '公告内容', 'text', 'String', 'noticeContent', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'editor', '', 7, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:57:19');
INSERT INTO `gen_table_column` VALUES (67, 5, 'status', '状态(0-显示,1-隐藏)', 'int', 'Integer', 'status', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 8, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:57:19');
INSERT INTO `gen_table_column` VALUES (68, 5, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', '1', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 9, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:57:19');
INSERT INTO `gen_table_column` VALUES (69, 5, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 10, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:57:19');
INSERT INTO `gen_table_column` VALUES (70, 5, 'delete_time', '删除时间', 'datetime', 'Date', 'deleteTime', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 11, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:57:19');
INSERT INTO `gen_table_column` VALUES (71, 5, 'create_by', '创建者', 'varchar(255)', 'String', 'createBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 12, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:57:19');
INSERT INTO `gen_table_column` VALUES (72, 5, 'update_by', '更新者', 'varchar(255)', 'String', 'updateBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 13, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:57:19');
INSERT INTO `gen_table_column` VALUES (73, 5, 'delete_by', '删除者', 'varchar(255)', 'String', 'deleteBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 14, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:57:19');
INSERT INTO `gen_table_column` VALUES (74, 5, 'del_flag', '删除标记(0-正常,1-删除)', 'int', 'Integer', 'delFlag', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 15, 'admin', '2024-04-13 13:55:58', '', '2024-04-13 13:57:19');
INSERT INTO `gen_table_column` VALUES (75, 6, 'member_user_id', '用户ID', 'bigint', 'Long', 'memberUserId', '1', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 1, 'admin', '2024-04-13 22:49:55', '', '2024-04-13 22:51:05');
INSERT INTO `gen_table_column` VALUES (76, 6, 'open_id', 'openId', 'varchar(32)', 'String', 'openId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2024-04-13 22:49:55', '', '2024-04-13 22:51:05');
INSERT INTO `gen_table_column` VALUES (77, 6, 'user_image', '用户头像', 'varchar(255)', 'String', 'userImage', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'imageUpload', '', 3, 'admin', '2024-04-13 22:49:55', '', '2024-04-13 22:51:05');
INSERT INTO `gen_table_column` VALUES (78, 6, 'user_name', '用户名称', 'varchar(255)', 'String', 'userName', '0', '0', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 4, 'admin', '2024-04-13 22:49:55', '', '2024-04-13 22:51:05');
INSERT INTO `gen_table_column` VALUES (79, 6, 'user_phone', '用户手机号', 'varchar(255)', 'String', 'userPhone', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2024-04-13 22:49:55', '', '2024-04-13 22:51:05');
INSERT INTO `gen_table_column` VALUES (80, 6, 'user_type', '用户类型(0-游客,1-工作人员)', 'int', 'Integer', 'userType', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2024-04-13 22:49:55', '', '2024-04-13 22:51:05');
INSERT INTO `gen_table_column` VALUES (81, 6, 'status', '状态(0-正常,1-冻结)', 'int', 'Integer', 'status', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2024-04-13 22:49:55', '', '2024-04-13 22:51:05');
INSERT INTO `gen_table_column` VALUES (82, 6, 'login_time', '登录时间', 'datetime', 'Date', 'loginTime', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 8, 'admin', '2024-04-13 22:49:55', '', '2024-04-13 22:51:05');
INSERT INTO `gen_table_column` VALUES (83, 6, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', '1', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 9, 'admin', '2024-04-13 22:49:55', '', '2024-04-13 22:51:05');
INSERT INTO `gen_table_column` VALUES (84, 6, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 10, 'admin', '2024-04-13 22:49:55', '', '2024-04-13 22:51:05');
INSERT INTO `gen_table_column` VALUES (85, 6, 'delete_time', '删除时间', 'datetime', 'Date', 'deleteTime', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 11, 'admin', '2024-04-13 22:49:55', '', '2024-04-13 22:51:05');
INSERT INTO `gen_table_column` VALUES (86, 6, 'create_by', '创建者', 'varchar(255)', 'String', 'createBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 12, 'admin', '2024-04-13 22:49:55', '', '2024-04-13 22:51:05');
INSERT INTO `gen_table_column` VALUES (87, 6, 'update_by', '更新者', 'varchar(255)', 'String', 'updateBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 13, 'admin', '2024-04-13 22:49:55', '', '2024-04-13 22:51:05');
INSERT INTO `gen_table_column` VALUES (88, 6, 'delete_by', '删除者', 'varchar(255)', 'String', 'deleteBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 14, 'admin', '2024-04-13 22:49:55', '', '2024-04-13 22:51:05');
INSERT INTO `gen_table_column` VALUES (89, 6, 'del_flag', '删除标记(0-正常,1-删除)', 'int', 'Integer', 'delFlag', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 15, 'admin', '2024-04-13 22:49:55', '', '2024-04-13 22:51:05');
INSERT INTO `gen_table_column` VALUES (90, 7, 'rule_id', '规则ID', 'bigint', 'Long', 'ruleId', '1', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 1, 'admin', '2024-04-14 01:37:35', '', '2024-04-14 01:44:11');
INSERT INTO `gen_table_column` VALUES (91, 7, 'rule_name', '规则名称', 'varchar(255)', 'String', 'ruleName', '0', '0', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 2, 'admin', '2024-04-14 01:37:35', '', '2024-04-14 01:44:11');
INSERT INTO `gen_table_column` VALUES (92, 7, 'rule_title', '规则标题', 'varchar(255)', 'String', 'ruleTitle', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2024-04-14 01:37:35', '', '2024-04-14 01:44:11');
INSERT INTO `gen_table_column` VALUES (93, 7, 'rule_type', '规则类型', 'varchar(255)', 'String', 'ruleType', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'select', '', 4, 'admin', '2024-04-14 01:37:35', '', '2024-04-14 01:44:11');
INSERT INTO `gen_table_column` VALUES (94, 7, 'rule_content', '规则内容', 'text', 'String', 'ruleContent', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'editor', '', 5, 'admin', '2024-04-14 01:37:35', '', '2024-04-14 01:44:11');
INSERT INTO `gen_table_column` VALUES (95, 7, 'status', '状态(0-显示,1-隐藏)', 'int', 'Integer', 'status', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'radio', '', 6, 'admin', '2024-04-14 01:37:35', '', '2024-04-14 01:44:11');
INSERT INTO `gen_table_column` VALUES (96, 7, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', '1', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 7, 'admin', '2024-04-14 01:37:35', '', '2024-04-14 01:44:11');
INSERT INTO `gen_table_column` VALUES (97, 7, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 8, 'admin', '2024-04-14 01:37:35', '', '2024-04-14 01:44:11');
INSERT INTO `gen_table_column` VALUES (98, 7, 'delete_time', '删除时间', 'datetime', 'Date', 'deleteTime', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 9, 'admin', '2024-04-14 01:37:35', '', '2024-04-14 01:44:11');
INSERT INTO `gen_table_column` VALUES (99, 7, 'create_by', '创建者', 'varchar(255)', 'String', 'createBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 10, 'admin', '2024-04-14 01:37:35', '', '2024-04-14 01:44:11');
INSERT INTO `gen_table_column` VALUES (100, 7, 'update_by', '更新者', 'varchar(255)', 'String', 'updateBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 11, 'admin', '2024-04-14 01:37:35', '', '2024-04-14 01:44:11');
INSERT INTO `gen_table_column` VALUES (101, 7, 'delete_by', '删除者', 'varchar(255)', 'String', 'deleteBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 12, 'admin', '2024-04-14 01:37:35', '', '2024-04-14 01:44:11');
INSERT INTO `gen_table_column` VALUES (102, 7, 'del_flag', '删除标记(0-正常,1-删除)', 'int', 'Integer', 'delFlag', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 13, 'admin', '2024-04-14 01:37:35', '', '2024-04-14 01:44:11');
INSERT INTO `gen_table_column` VALUES (103, 8, 'feedback_id', '用户投诉ID', 'bigint', 'Long', 'feedbackId', '1', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 1, 'admin', '2024-04-14 02:10:44', '', '2024-04-14 02:11:47');
INSERT INTO `gen_table_column` VALUES (104, 8, 'member_user_id', '用户ID', 'bigint', 'Long', 'memberUserId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2024-04-14 02:10:44', '', '2024-04-14 02:11:47');
INSERT INTO `gen_table_column` VALUES (105, 8, 'feedback_content', '投诉内容', 'text', 'String', 'feedbackContent', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'textarea', '', 3, 'admin', '2024-04-14 02:10:44', '', '2024-04-14 02:11:47');
INSERT INTO `gen_table_column` VALUES (106, 8, 'feedback_image', '投诉图片', 'text', 'String', 'feedbackImage', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'imageUpload', '', 4, 'admin', '2024-04-14 02:10:44', '', '2024-04-14 02:11:47');
INSERT INTO `gen_table_column` VALUES (107, 8, 'status', '状态(0-未处理,1-已处理)', 'int', 'Integer', 'status', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2024-04-14 02:10:44', '', '2024-04-14 02:11:47');
INSERT INTO `gen_table_column` VALUES (108, 8, 'remark', '备注', 'varchar(255)', 'String', 'remark', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2024-04-14 02:10:44', '', '2024-04-14 02:11:47');
INSERT INTO `gen_table_column` VALUES (109, 8, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', '1', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 7, 'admin', '2024-04-14 02:10:44', '', '2024-04-14 02:11:47');
INSERT INTO `gen_table_column` VALUES (110, 8, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 8, 'admin', '2024-04-14 02:10:44', '', '2024-04-14 02:11:47');
INSERT INTO `gen_table_column` VALUES (111, 8, 'delete_time', '删除时间', 'datetime', 'Date', 'deleteTime', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 9, 'admin', '2024-04-14 02:10:44', '', '2024-04-14 02:11:47');
INSERT INTO `gen_table_column` VALUES (112, 8, 'create_by', '创建者', 'varchar(255)', 'String', 'createBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 10, 'admin', '2024-04-14 02:10:44', '', '2024-04-14 02:11:47');
INSERT INTO `gen_table_column` VALUES (113, 8, 'update_by', '更新者', 'varchar(255)', 'String', 'updateBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 11, 'admin', '2024-04-14 02:10:44', '', '2024-04-14 02:11:47');
INSERT INTO `gen_table_column` VALUES (114, 8, 'delete_by', '删除者', 'varchar(255)', 'String', 'deleteBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 12, 'admin', '2024-04-14 02:10:44', '', '2024-04-14 02:11:47');
INSERT INTO `gen_table_column` VALUES (115, 8, 'del_flag', '删除标记(0-正常,1-删除)', 'int', 'Integer', 'delFlag', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 13, 'admin', '2024-04-14 02:10:44', '', '2024-04-14 02:11:47');
INSERT INTO `gen_table_column` VALUES (116, 9, 'museum_class_id', '博物馆分类ID', 'bigint', 'Long', 'museumClassId', '1', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 1, 'admin', '2024-04-14 03:03:54', '', '2024-04-14 03:04:37');
INSERT INTO `gen_table_column` VALUES (117, 9, 'class_name', '分类名称', 'varchar(255)', 'String', 'className', '0', '0', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 2, 'admin', '2024-04-14 03:03:54', '', '2024-04-14 03:04:37');
INSERT INTO `gen_table_column` VALUES (118, 9, 'english_name', '英文名', 'varchar(255)', 'String', 'englishName', '0', '0', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 3, 'admin', '2024-04-14 03:03:54', '', '2024-04-14 03:04:37');
INSERT INTO `gen_table_column` VALUES (119, 9, 'class_image', '图片', 'varchar(255)', 'String', 'classImage', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'imageUpload', '', 4, 'admin', '2024-04-14 03:03:54', '', '2024-04-14 03:04:37');
INSERT INTO `gen_table_column` VALUES (120, 9, 'sort', '排序', 'int', 'Integer', 'sort', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2024-04-14 03:03:54', '', '2024-04-14 03:04:37');
INSERT INTO `gen_table_column` VALUES (121, 9, 'status', '状态(0-显示,1-隐藏)', 'int', 'Integer', 'status', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2024-04-14 03:03:54', '', '2024-04-14 03:04:37');
INSERT INTO `gen_table_column` VALUES (122, 9, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', '1', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 7, 'admin', '2024-04-14 03:03:54', '', '2024-04-14 03:04:37');
INSERT INTO `gen_table_column` VALUES (123, 9, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 8, 'admin', '2024-04-14 03:03:54', '', '2024-04-14 03:04:37');
INSERT INTO `gen_table_column` VALUES (124, 9, 'delete_time', '删除时间', 'datetime', 'Date', 'deleteTime', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 9, 'admin', '2024-04-14 03:03:54', '', '2024-04-14 03:04:37');
INSERT INTO `gen_table_column` VALUES (125, 9, 'create_by', '创建者', 'varchar(255)', 'String', 'createBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 10, 'admin', '2024-04-14 03:03:54', '', '2024-04-14 03:04:37');
INSERT INTO `gen_table_column` VALUES (126, 9, 'update_by', '更新者', 'varchar(255)', 'String', 'updateBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 11, 'admin', '2024-04-14 03:03:54', '', '2024-04-14 03:04:37');
INSERT INTO `gen_table_column` VALUES (127, 9, 'delete_by', '删除者', 'varchar(255)', 'String', 'deleteBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 12, 'admin', '2024-04-14 03:03:54', '', '2024-04-14 03:04:37');
INSERT INTO `gen_table_column` VALUES (128, 9, 'del_flag', '删除标记(0-正常,1-删除)', 'int', 'Integer', 'delFlag', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 13, 'admin', '2024-04-14 03:03:54', '', '2024-04-14 03:04:37');
INSERT INTO `gen_table_column` VALUES (129, 10, 'museum_id', '博物馆分类ID', 'bigint', 'Long', 'museumId', '1', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 1, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (130, 10, 'museum_name', '博物馆名称', 'varchar(255)', 'String', 'museumName', '0', '0', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 2, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (131, 10, 'museum_class_id', '博物馆分类ID', 'bigint', 'Long', 'museumClassId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (132, 10, 'province_name', '省份名称', 'varchar(255)', 'String', 'provinceName', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (133, 10, 'city_name', '城市名称', 'varchar(255)', 'String', 'cityName', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (134, 10, 'address', '地址', 'varchar(255)', 'String', 'address', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (135, 10, 'mechanism_name', '所属机构', 'varchar(255)', 'String', 'mechanismName', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (136, 10, 'museum_grade', '博物馆等级', 'varchar(255)', 'String', 'museumGrade', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 8, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (137, 10, 'collection_amount', '藏品总数', 'int', 'Integer', 'collectionAmount', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 9, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (138, 10, 'audience_amount', '年观众总数', 'int', 'Integer', 'audienceAmount', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 10, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (139, 10, 'precious_collection_amount', '珍贵藏品数', 'int', 'Integer', 'preciousCollectionAmount', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 11, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (140, 10, 'show_amount', '陈列展览数', 'int', 'Integer', 'showAmount', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 12, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (141, 10, 'museum_image', '展示图', 'varchar(255)', 'String', 'museumImage', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'imageUpload', '', 13, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (142, 10, 'museum_banner', '轮播图', 'text', 'String', 'museumBanner', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'imageUpload', '', 14, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (143, 10, 'museum_score', '博物馆评分', 'double(10,2)', 'Double', 'museumScore', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 15, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (144, 10, 'opening_start', '营业开始时间', 'varchar(255)', 'String', 'openingStart', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 16, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (145, 10, 'opening_end', '营业结束时间', 'varchar(255)', 'String', 'openingEnd', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 17, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (146, 10, 'opening_week', '营业日期', 'varchar(255)', 'String', 'openingWeek', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 18, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (147, 10, 'reservations_number', '当天预约人数', 'int', 'Integer', 'reservationsNumber', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 19, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (148, 10, 'Remain_ticket', '剩余票数', 'int', 'Integer', 'remainTicket', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 20, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (149, 10, 'crowd_degree', '拥挤程度', 'varchar(255)', 'String', 'crowdDegree', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 21, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (150, 10, 'museum_introduce', '博物馆介绍 ', 'text', 'String', 'museumIntroduce', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'textarea', '', 22, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (151, 10, 'reservation_link', '预约链接', 'varchar(255)', 'String', 'reservationLink', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 23, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (152, 10, 'status', '状态(0-展示,1-隐藏)', 'int', 'Integer', 'status', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 24, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (153, 10, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', '1', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 25, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (154, 10, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 26, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (155, 10, 'delete_time', '删除时间', 'datetime', 'Date', 'deleteTime', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 27, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (156, 10, 'create_by', '创建者', 'varchar(255)', 'String', 'createBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 28, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (157, 10, 'update_by', '更新者', 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 29, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (158, 10, 'delete_by', '删除者', 'varchar(255)', 'String', 'deleteBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 30, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (159, 10, 'del_flag', '删除标记(0-正常,1-删除)', 'int', 'Integer', 'delFlag', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 31, 'admin', '2024-04-14 16:02:04', '', '2024-04-14 16:03:48');
INSERT INTO `gen_table_column` VALUES (160, 11, 'id', '主键id', 'int', 'Long', 'id', '1', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 1, 'admin', '2024-04-14 16:23:52', '', '2024-04-14 16:24:05');
INSERT INTO `gen_table_column` VALUES (161, 11, 'pid', '上级id', 'int', 'Long', 'pid', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2024-04-14 16:23:52', '', '2024-04-14 16:24:05');
INSERT INTO `gen_table_column` VALUES (162, 11, 'shortname', '简称', 'varchar(300)', 'String', 'shortname', '0', '0', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 3, 'admin', '2024-04-14 16:23:52', '', '2024-04-14 16:24:05');
INSERT INTO `gen_table_column` VALUES (163, 11, 'name', '名称', 'varchar(300)', 'String', 'name', '0', '0', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 4, 'admin', '2024-04-14 16:23:52', '', '2024-04-14 16:24:05');
INSERT INTO `gen_table_column` VALUES (164, 11, 'merger_name', '全程', 'varchar(765)', 'String', 'mergerName', '0', '0', '1', '1', '1', '1', '1', 'LIKE', 'textarea', '', 5, 'admin', '2024-04-14 16:23:52', '', '2024-04-14 16:24:05');
INSERT INTO `gen_table_column` VALUES (165, 11, 'type', '类型(1-省, 2-市, 3-区县)', 'tinyint', 'Long', 'type', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'select', '', 6, 'admin', '2024-04-14 16:23:52', '', '2024-04-14 16:24:05');
INSERT INTO `gen_table_column` VALUES (166, 11, 'pinyin', '拼音', 'varchar(300)', 'String', 'pinyin', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2024-04-14 16:23:52', '', '2024-04-14 16:24:05');
INSERT INTO `gen_table_column` VALUES (167, 11, 'phone_code', '电话区号', 'varchar(300)', 'String', 'phoneCode', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 8, 'admin', '2024-04-14 16:23:52', '', '2024-04-14 16:24:05');
INSERT INTO `gen_table_column` VALUES (168, 11, 'code', '邮编', 'varchar(300)', 'String', 'code', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 9, 'admin', '2024-04-14 16:23:52', '', '2024-04-14 16:24:05');
INSERT INTO `gen_table_column` VALUES (169, 11, 'first', '拼音首字母', 'varchar(150)', 'String', 'first', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 10, 'admin', '2024-04-14 16:23:52', '', '2024-04-14 16:24:05');
INSERT INTO `gen_table_column` VALUES (170, 11, 'lng', '经度', 'varchar(300)', 'String', 'lng', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 11, 'admin', '2024-04-14 16:23:52', '', '2024-04-14 16:24:05');
INSERT INTO `gen_table_column` VALUES (171, 11, 'lat', '纬度', 'varchar(300)', 'String', 'lat', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 12, 'admin', '2024-04-14 16:23:52', '', '2024-04-14 16:24:05');
INSERT INTO `gen_table_column` VALUES (172, 12, 'museum_mechanism_id', '博物馆机构', 'bigint', 'Long', 'museumMechanismId', '1', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 1, 'admin', '2024-04-14 21:30:53', '', '2024-04-14 21:31:32');
INSERT INTO `gen_table_column` VALUES (173, 12, 'mechanism', '机构名称', 'varchar(255)', 'String', 'mechanism', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2024-04-14 21:30:53', '', '2024-04-14 21:31:32');
INSERT INTO `gen_table_column` VALUES (174, 12, 'sort', '排序', 'int', 'Integer', 'sort', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2024-04-14 21:30:53', '', '2024-04-14 21:31:32');
INSERT INTO `gen_table_column` VALUES (175, 12, 'status', '状态()0-显示,1-隐藏', 'int', 'Integer', 'status', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'radio', '', 4, 'admin', '2024-04-14 21:30:53', '', '2024-04-14 21:31:32');
INSERT INTO `gen_table_column` VALUES (176, 12, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', '1', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 5, 'admin', '2024-04-14 21:30:53', '', '2024-04-14 21:31:32');
INSERT INTO `gen_table_column` VALUES (177, 12, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 6, 'admin', '2024-04-14 21:30:53', '', '2024-04-14 21:31:32');
INSERT INTO `gen_table_column` VALUES (178, 12, 'delete_time', '删除时间', 'datetime', 'Date', 'deleteTime', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 7, 'admin', '2024-04-14 21:30:53', '', '2024-04-14 21:31:32');
INSERT INTO `gen_table_column` VALUES (179, 12, 'create_by', '创建者', 'varchar(255)', 'String', 'createBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 8, 'admin', '2024-04-14 21:30:53', '', '2024-04-14 21:31:32');
INSERT INTO `gen_table_column` VALUES (180, 12, 'update_by', '更新者', 'varchar(255)', 'String', 'updateBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 9, 'admin', '2024-04-14 21:30:53', '', '2024-04-14 21:31:32');
INSERT INTO `gen_table_column` VALUES (181, 12, 'delete_by', '删除者', 'varchar(255)', 'String', 'deleteBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 10, 'admin', '2024-04-14 21:30:53', '', '2024-04-14 21:31:32');
INSERT INTO `gen_table_column` VALUES (182, 12, 'del_flag', '删除标记(0-正常,1-删除)', 'int', 'Integer', 'delFlag', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 11, 'admin', '2024-04-14 21:30:53', '', '2024-04-14 21:31:32');
INSERT INTO `gen_table_column` VALUES (183, 13, 'holiday_id', '节假日ID', 'bigint', 'Long', 'holidayId', '1', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 1, 'admin', '2024-04-14 21:51:32', '', '2024-04-14 22:16:19');
INSERT INTO `gen_table_column` VALUES (184, 13, 'holiday_name', '节假日名称', 'varchar(255)', 'String', 'holidayName', '0', '0', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 2, 'admin', '2024-04-14 21:51:32', '', '2024-04-14 22:16:19');
INSERT INTO `gen_table_column` VALUES (185, 13, 'sort', '排序', 'int', 'Long', 'sort', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2024-04-14 21:51:32', '', '2024-04-14 22:16:19');
INSERT INTO `gen_table_column` VALUES (186, 13, 'status', '状态(0-显示,1-隐藏)', 'int', 'Long', 'status', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2024-04-14 21:51:32', '', '2024-04-14 22:16:19');
INSERT INTO `gen_table_column` VALUES (187, 14, 'holiday_passenger_id', '节假日客流统计ID', 'bigint', 'Long', 'holidayPassengerId', '1', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 1, 'admin', '2024-04-14 21:56:23', '', '2024-04-14 22:56:42');
INSERT INTO `gen_table_column` VALUES (188, 14, 'member_user_id', '上报用户ID', 'bigint', 'Long', 'memberUserId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2024-04-14 21:56:23', '', '2024-04-14 22:56:42');
INSERT INTO `gen_table_column` VALUES (190, 14, 'holiday_name', '节假日名称', 'varchar(255)', 'String', 'holidayName', '0', '0', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 4, 'admin', '2024-04-14 21:56:23', '', '2024-04-14 22:56:42');
INSERT INTO `gen_table_column` VALUES (191, 14, 'holiday_date_start', '节假日开始时间', 'varchar(255)', 'String', 'holidayDateStart', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2024-04-14 21:56:23', '', '2024-04-14 22:56:42');
INSERT INTO `gen_table_column` VALUES (192, 14, 'holiday_date_end', '节假日结束时间', 'varchar(255)', 'String', 'holidayDateEnd', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2024-04-14 21:56:23', '', '2024-04-14 22:56:42');
INSERT INTO `gen_table_column` VALUES (193, 14, 'museum_id', '博物馆ID', 'bigint', 'Long', 'museumId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2024-04-14 21:56:23', '', '2024-04-14 22:56:42');
INSERT INTO `gen_table_column` VALUES (194, 14, 'passenger_amount', '节假日客流量', 'int', 'Integer', 'passengerAmount', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 8, 'admin', '2024-04-14 21:56:23', '', '2024-04-14 22:56:42');
INSERT INTO `gen_table_column` VALUES (195, 14, 'report_date', '上报时间', 'varchar(255)', 'Date', 'reportDate', '0', '0', '1', '1', '1', '1', '1', 'BETWEEN', 'input', '', 9, 'admin', '2024-04-14 21:56:23', '', '2024-04-14 22:56:42');
INSERT INTO `gen_table_column` VALUES (196, 14, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', '1', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 10, 'admin', '2024-04-14 21:56:23', '', '2024-04-14 22:56:42');
INSERT INTO `gen_table_column` VALUES (197, 14, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 11, 'admin', '2024-04-14 21:56:23', '', '2024-04-14 22:56:42');
INSERT INTO `gen_table_column` VALUES (198, 14, 'delete_time', '删除时间', 'datetime', 'Date', 'deleteTime', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 12, 'admin', '2024-04-14 21:56:23', '', '2024-04-14 22:56:42');
INSERT INTO `gen_table_column` VALUES (199, 14, 'create_by', '创建者', 'varchar(255)', 'String', 'createBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 13, 'admin', '2024-04-14 21:56:23', '', '2024-04-14 22:56:42');
INSERT INTO `gen_table_column` VALUES (200, 14, 'update_by', '更新者', 'varchar(255)', 'String', 'updateBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 14, 'admin', '2024-04-14 21:56:23', '', '2024-04-14 22:56:42');
INSERT INTO `gen_table_column` VALUES (201, 14, 'delete_by', '删除者', 'varchar(255)', 'String', 'deleteBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 15, 'admin', '2024-04-14 21:56:23', '', '2024-04-14 22:56:42');
INSERT INTO `gen_table_column` VALUES (202, 14, 'del_flag', '删除标记(0-正常,1-删除)', 'int', 'Long', 'delFlag', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 16, 'admin', '2024-04-14 21:56:23', '', '2024-04-14 22:56:42');
INSERT INTO `gen_table_column` VALUES (203, 13, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 5, '', '2024-04-14 21:57:19', '', '2024-04-14 22:16:19');
INSERT INTO `gen_table_column` VALUES (204, 13, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 6, '', '2024-04-14 21:57:19', '', '2024-04-14 22:16:19');
INSERT INTO `gen_table_column` VALUES (205, 13, 'delete_time', '删除时间', 'datetime', 'Date', 'deleteTime', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 7, '', '2024-04-14 21:57:19', '', '2024-04-14 22:16:19');
INSERT INTO `gen_table_column` VALUES (206, 13, 'create_by', '创建者', 'varchar(255)', 'String', 'createBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 8, '', '2024-04-14 21:57:19', '', '2024-04-14 22:16:19');
INSERT INTO `gen_table_column` VALUES (207, 13, 'update_by', '更新者', 'varchar(255)', 'String', 'updateBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 9, '', '2024-04-14 21:57:19', '', '2024-04-14 22:16:19');
INSERT INTO `gen_table_column` VALUES (208, 13, 'delete_by', '删除者', 'varchar(255)', 'String', 'deleteBy', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 10, '', '2024-04-14 21:57:19', '', '2024-04-14 22:16:19');
INSERT INTO `gen_table_column` VALUES (209, 13, 'del_flag', '删除标记(0-正常,1-删除)', 'int', 'Long', 'delFlag', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 11, '', '2024-04-14 21:57:19', '', '2024-04-14 22:16:19');
INSERT INTO `gen_table_column` VALUES (210, 14, 'report_year', '年份', 'varchar(255)', 'String', 'reportYear', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 3, '', '2024-04-14 22:16:11', '', '2024-04-14 22:56:42');
INSERT INTO `gen_table_column` VALUES (211, 15, 'access_log_id', '用户访问日志ID', 'bigint', 'Long', 'accessLogId', '1', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 1, 'admin', '2024-04-14 23:50:46', '', '2024-04-14 23:51:08');
INSERT INTO `gen_table_column` VALUES (212, 15, 'member_user_id', '用户ID', 'bigint', 'Long', 'memberUserId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2024-04-14 23:50:46', '', '2024-04-14 23:51:08');
INSERT INTO `gen_table_column` VALUES (213, 15, 'access_url', '访问路径', 'varchar(255)', 'String', 'accessUrl', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2024-04-14 23:50:46', '', '2024-04-14 23:51:08');
INSERT INTO `gen_table_column` VALUES (214, 15, 'access_desc', '访问描述', 'varchar(255)', 'String', 'accessDesc', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2024-04-14 23:50:46', '', '2024-04-14 23:51:08');
INSERT INTO `gen_table_column` VALUES (215, 15, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', '1', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 5, 'admin', '2024-04-14 23:50:46', '', '2024-04-14 23:51:08');
-- ----------------------------
-- Table structure for sys_config
-- ----------------------------
DROP TABLE IF EXISTS `sys_config`;
CREATE TABLE `sys_config` (
`config_id` int NOT NULL AUTO_INCREMENT COMMENT '参数主键',
`config_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '参数名称',
`config_key` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '参数键名',
`config_value` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '参数键值',
`config_type` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT 'N' COMMENT '系统内置(Y是 N否)',
`create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '创建者',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '更新者',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`config_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 100 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '参数配置表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of sys_config
-- ----------------------------
INSERT INTO `sys_config` VALUES (1, '主框架页-默认皮肤样式名称', 'sys.index.skinName', 'skin-blue', 'Y', 'admin', '2024-04-12 15:37:35', '', NULL, '蓝色 skin-blue、绿色 skin-green、紫色 skin-purple、红色 skin-red、黄色 skin-yellow');
INSERT INTO `sys_config` VALUES (2, '用户管理-账号初始密码', 'sys.user.initPassword', '123456', 'Y', 'admin', '2024-04-12 15:37:35', '', NULL, '初始化密码 123456');
INSERT INTO `sys_config` VALUES (3, '主框架页-侧边栏主题', 'sys.index.sideTheme', 'theme-dark', 'Y', 'admin', '2024-04-12 15:37:35', '', NULL, '深色主题theme-dark,浅色主题theme-light');
INSERT INTO `sys_config` VALUES (4, '账号自助-是否开启用户注册功能', 'sys.account.registerUser', 'false', 'Y', 'admin', '2024-04-12 15:37:35', '', NULL, '是否开启注册用户功能(true开启,false关闭)');
INSERT INTO `sys_config` VALUES (5, '用户登录-黑名单列表', 'sys.login.blackIPList', '', 'Y', 'admin', '2024-04-12 15:37:35', '', NULL, '设置登录IP黑名单限制,多个匹配项以;分隔,支持匹配(*通配、网段)');
-- ----------------------------
-- Table structure for sys_dept
-- ----------------------------
DROP TABLE IF EXISTS `sys_dept`;
CREATE TABLE `sys_dept` (
`dept_id` bigint NOT NULL AUTO_INCREMENT COMMENT '部门id',
`parent_id` bigint NULL DEFAULT 0 COMMENT '父部门id',
`ancestors` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '祖级列表',
`dept_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '部门名称',
`order_num` int NULL DEFAULT 0 COMMENT '显示顺序',
`leader` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '负责人',
`phone` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '联系电话',
`email` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '邮箱',
`status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '部门状态(0正常 1停用)',
`del_flag` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
`create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '创建者',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '更新者',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`dept_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 200 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '部门表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of sys_dept
-- ----------------------------
INSERT INTO `sys_dept` VALUES (100, 0, '0', '小牛科技科技', 0, '小牛科技', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2024-04-12 15:37:35', '', NULL);
INSERT INTO `sys_dept` VALUES (101, 100, '0,100', '河南总公司', 1, '小牛科技', '15888888888', 'xn@qq.com', '0', '0', 'admin', '2024-04-12 15:37:35', 'admin', '2024-04-12 16:00:36');
INSERT INTO `sys_dept` VALUES (102, 100, '0,100', '长沙分公司', 2, '小牛科技', '15888888888', 'ry@qq.com', '0', '2', 'admin', '2024-04-12 15:37:35', '', NULL);
INSERT INTO `sys_dept` VALUES (103, 101, '0,100,101', '研发部门', 1, '小牛科技', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2024-04-12 15:37:35', '', NULL);
INSERT INTO `sys_dept` VALUES (104, 101, '0,100,101', '市场部门', 2, '小牛科技', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2024-04-12 15:37:35', '', NULL);
INSERT INTO `sys_dept` VALUES (105, 101, '0,100,101', '测试部门', 3, '小牛科技', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2024-04-12 15:37:35', '', NULL);
INSERT INTO `sys_dept` VALUES (106, 101, '0,100,101', '财务部门', 4, '小牛科技', '15888888888', 'ry@qq.com', '0', '2', 'admin', '2024-04-12 15:37:35', '', NULL);
INSERT INTO `sys_dept` VALUES (107, 101, '0,100,101', '运维部门', 5, '小牛科技', '15888888888', 'ry@qq.com', '0', '2', 'admin', '2024-04-12 15:37:35', '', NULL);
INSERT INTO `sys_dept` VALUES (108, 102, '0,100,102', '市场部门', 1, '小牛科技', '15888888888', 'ry@qq.com', '0', '2', 'admin', '2024-04-12 15:37:35', '', NULL);
INSERT INTO `sys_dept` VALUES (109, 102, '0,100,102', '财务部门', 2, '小牛科技', '15888888888', 'ry@qq.com', '0', '2', 'admin', '2024-04-12 15:37:35', '', NULL);
-- ----------------------------
-- Table structure for sys_dict_data
-- ----------------------------
DROP TABLE IF EXISTS `sys_dict_data`;
CREATE TABLE `sys_dict_data` (
`dict_code` bigint NOT NULL AUTO_INCREMENT COMMENT '字典编码',
`dict_sort` int NULL DEFAULT 0 COMMENT '字典排序',
`dict_label` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '字典标签',
`dict_value` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '字典键值',
`dict_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '字典类型',
`css_class` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '样式属性(其他样式扩展)',
`list_class` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '表格回显样式',
`is_default` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT 'N' COMMENT '是否默认(Y是 N否)',
`status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '状态(0正常 1停用)',
`create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '创建者',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '更新者',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`dict_code`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 100 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '字典数据表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of sys_dict_data
-- ----------------------------
INSERT INTO `sys_dict_data` VALUES (1, 1, '男', '0', 'sys_user_sex', '', '', 'Y', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '性别男');
INSERT INTO `sys_dict_data` VALUES (2, 2, '女', '1', 'sys_user_sex', '', '', 'N', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '性别女');
INSERT INTO `sys_dict_data` VALUES (3, 3, '未知', '2', 'sys_user_sex', '', '', 'N', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '性别未知');
INSERT INTO `sys_dict_data` VALUES (4, 1, '显示', '0', 'sys_show_hide', '', 'primary', 'Y', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '显示菜单');
INSERT INTO `sys_dict_data` VALUES (5, 2, '隐藏', '1', 'sys_show_hide', '', 'danger', 'N', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '隐藏菜单');
INSERT INTO `sys_dict_data` VALUES (6, 1, '正常', '0', 'sys_normal_disable', '', 'primary', 'Y', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '正常状态');
INSERT INTO `sys_dict_data` VALUES (7, 2, '停用', '1', 'sys_normal_disable', '', 'danger', 'N', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '停用状态');
INSERT INTO `sys_dict_data` VALUES (8, 1, '正常', '0', 'sys_job_status', '', 'primary', 'Y', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '正常状态');
INSERT INTO `sys_dict_data` VALUES (9, 2, '暂停', '1', 'sys_job_status', '', 'danger', 'N', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '停用状态');
INSERT INTO `sys_dict_data` VALUES (10, 1, '默认', 'DEFAULT', 'sys_job_group', '', '', 'Y', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '默认分组');
INSERT INTO `sys_dict_data` VALUES (11, 2, '系统', 'SYSTEM', 'sys_job_group', '', '', 'N', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '系统分组');
INSERT INTO `sys_dict_data` VALUES (12, 1, '是', 'Y', 'sys_yes_no', '', 'primary', 'Y', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '系统默认是');
INSERT INTO `sys_dict_data` VALUES (13, 2, '否', 'N', 'sys_yes_no', '', 'danger', 'N', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '系统默认否');
INSERT INTO `sys_dict_data` VALUES (14, 1, '通知', '1', 'sys_notice_type', '', 'warning', 'Y', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '通知');
INSERT INTO `sys_dict_data` VALUES (15, 2, '公告', '2', 'sys_notice_type', '', 'success', 'N', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '公告');
INSERT INTO `sys_dict_data` VALUES (16, 1, '正常', '0', 'sys_notice_status', '', 'primary', 'Y', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '正常状态');
INSERT INTO `sys_dict_data` VALUES (17, 2, '关闭', '1', 'sys_notice_status', '', 'danger', 'N', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '关闭状态');
INSERT INTO `sys_dict_data` VALUES (18, 99, '其他', '0', 'sys_oper_type', '', 'info', 'N', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '其他操作');
INSERT INTO `sys_dict_data` VALUES (19, 1, '新增', '1', 'sys_oper_type', '', 'info', 'N', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '新增操作');
INSERT INTO `sys_dict_data` VALUES (20, 2, '修改', '2', 'sys_oper_type', '', 'info', 'N', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '修改操作');
INSERT INTO `sys_dict_data` VALUES (21, 3, '删除', '3', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '删除操作');
INSERT INTO `sys_dict_data` VALUES (22, 4, '授权', '4', 'sys_oper_type', '', 'primary', 'N', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '授权操作');
INSERT INTO `sys_dict_data` VALUES (23, 5, '导出', '5', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '导出操作');
INSERT INTO `sys_dict_data` VALUES (24, 6, '导入', '6', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '导入操作');
INSERT INTO `sys_dict_data` VALUES (25, 7, '强退', '7', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '强退操作');
INSERT INTO `sys_dict_data` VALUES (26, 8, '生成代码', '8', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '生成操作');
INSERT INTO `sys_dict_data` VALUES (27, 9, '清空数据', '9', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '清空操作');
INSERT INTO `sys_dict_data` VALUES (28, 1, '成功', '0', 'sys_common_status', '', 'primary', 'N', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '正常状态');
INSERT INTO `sys_dict_data` VALUES (29, 2, '失败', '1', 'sys_common_status', '', 'danger', 'N', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '停用状态');
-- ----------------------------
-- Table structure for sys_dict_type
-- ----------------------------
DROP TABLE IF EXISTS `sys_dict_type`;
CREATE TABLE `sys_dict_type` (
`dict_id` bigint NOT NULL AUTO_INCREMENT COMMENT '字典主键',
`dict_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '字典名称',
`dict_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '字典类型',
`status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '状态(0正常 1停用)',
`create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '创建者',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '更新者',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`dict_id`) USING BTREE,
UNIQUE INDEX `dict_type`(`dict_type`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 100 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '字典类型表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of sys_dict_type
-- ----------------------------
INSERT INTO `sys_dict_type` VALUES (1, '用户性别', 'sys_user_sex', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '用户性别列表');
INSERT INTO `sys_dict_type` VALUES (2, '菜单状态', 'sys_show_hide', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '菜单状态列表');
INSERT INTO `sys_dict_type` VALUES (3, '系统开关', 'sys_normal_disable', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '系统开关列表');
INSERT INTO `sys_dict_type` VALUES (4, '任务状态', 'sys_job_status', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '任务状态列表');
INSERT INTO `sys_dict_type` VALUES (5, '任务分组', 'sys_job_group', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '任务分组列表');
INSERT INTO `sys_dict_type` VALUES (6, '系统是否', 'sys_yes_no', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '系统是否列表');
INSERT INTO `sys_dict_type` VALUES (7, '通知类型', 'sys_notice_type', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '通知类型列表');
INSERT INTO `sys_dict_type` VALUES (8, '通知状态', 'sys_notice_status', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '通知状态列表');
INSERT INTO `sys_dict_type` VALUES (9, '操作类型', 'sys_oper_type', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '操作类型列表');
INSERT INTO `sys_dict_type` VALUES (10, '系统状态', 'sys_common_status', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '登录状态列表');
-- ----------------------------
-- Table structure for sys_job
-- ----------------------------
DROP TABLE IF EXISTS `sys_job`;
CREATE TABLE `sys_job` (
`job_id` bigint NOT NULL AUTO_INCREMENT COMMENT '任务ID',
`job_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '任务名称',
`job_group` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT 'DEFAULT' COMMENT '任务组名',
`invoke_target` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '调用目标字符串',
`cron_expression` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT 'cron执行表达式',
`misfire_policy` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '3' COMMENT '计划执行错误策略(1立即执行 2执行一次 3放弃执行)',
`concurrent` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '1' COMMENT '是否并发执行(0允许 1禁止)',
`status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '状态(0正常 1暂停)',
`create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '创建者',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '更新者',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '备注信息',
PRIMARY KEY (`job_id`, `job_name`, `job_group`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 100 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '定时任务调度表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of sys_job
-- ----------------------------
INSERT INTO `sys_job` VALUES (1, '系统默认(无参)', 'DEFAULT', 'ryTask.ryNoParams', '0/10 * * * * ?', '3', '1', '1', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_job` VALUES (2, '系统默认(有参)', 'DEFAULT', 'ryTask.ryParams(\'ry\')', '0/15 * * * * ?', '3', '1', '1', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_job` VALUES (3, '系统默认(多参)', 'DEFAULT', 'ryTask.ryMultipleParams(\'ry\', true, 2000L, 316.50D, 100)', '0/20 * * * * ?', '3', '1', '1', 'admin', '2024-04-12 15:37:35', '', NULL, '');
-- ----------------------------
-- Table structure for sys_job_log
-- ----------------------------
DROP TABLE IF EXISTS `sys_job_log`;
CREATE TABLE `sys_job_log` (
`job_log_id` bigint NOT NULL AUTO_INCREMENT COMMENT '任务日志ID',
`job_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '任务名称',
`job_group` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '任务组名',
`invoke_target` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '调用目标字符串',
`job_message` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '日志信息',
`status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '执行状态(0正常 1失败)',
`exception_info` varchar(2000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '异常信息',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`job_log_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '定时任务调度日志表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of sys_job_log
-- ----------------------------
-- ----------------------------
-- Table structure for sys_logininfor
-- ----------------------------
DROP TABLE IF EXISTS `sys_logininfor`;
CREATE TABLE `sys_logininfor` (
`info_id` bigint NOT NULL AUTO_INCREMENT COMMENT '访问ID',
`user_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '用户账号',
`ipaddr` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '登录IP地址',
`status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '登录状态(0成功 1失败)',
`msg` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '提示信息',
`access_time` datetime(0) NULL DEFAULT NULL COMMENT '访问时间',
PRIMARY KEY (`info_id`) USING BTREE,
INDEX `idx_sys_logininfor_s`(`status`) USING BTREE,
INDEX `idx_sys_logininfor_lt`(`access_time`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 37 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统访问记录' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of sys_logininfor
-- ----------------------------
INSERT INTO `sys_logininfor` VALUES (1, 'admin', '127.0.0.1', '0', '登录成功', '2024-04-12 20:01:12');
INSERT INTO `sys_logininfor` VALUES (2, 'admin', '127.0.0.1', '0', '退出成功', '2024-04-12 21:18:20');
INSERT INTO `sys_logininfor` VALUES (3, 'admin', '127.0.0.1', '0', '登录成功', '2024-04-12 21:21:09');
INSERT INTO `sys_logininfor` VALUES (4, 'admin', '127.0.0.1', '0', '登录成功', '2024-04-12 22:03:30');
INSERT INTO `sys_logininfor` VALUES (5, 'admin', '127.0.0.1', '0', '登录成功', '2024-04-13 10:15:05');
INSERT INTO `sys_logininfor` VALUES (6, 'admin', '127.0.0.1', '0', '退出成功', '2024-04-13 10:15:41');
INSERT INTO `sys_logininfor` VALUES (7, 'admin', '127.0.0.1', '0', '退出成功', '2024-04-13 10:15:41');
INSERT INTO `sys_logininfor` VALUES (8, 'admin', '127.0.0.1', '0', '登录成功', '2024-04-13 10:16:16');
INSERT INTO `sys_logininfor` VALUES (9, 'admin', '127.0.0.1', '0', '登录成功', '2024-04-13 11:55:31');
INSERT INTO `sys_logininfor` VALUES (10, 'admin', '127.0.0.1', '0', '登录成功', '2024-04-13 12:06:23');
INSERT INTO `sys_logininfor` VALUES (11, 'admin', '127.0.0.1', '0', '登录成功', '2024-04-13 13:49:50');
INSERT INTO `sys_logininfor` VALUES (12, 'admin', '127.0.0.1', '0', '登录成功', '2024-04-13 16:38:16');
INSERT INTO `sys_logininfor` VALUES (13, 'admin', '127.0.0.1', '0', '退出成功', '2024-04-13 16:38:23');
INSERT INTO `sys_logininfor` VALUES (14, 'admin', '127.0.0.1', '0', '登录成功', '2024-04-13 16:38:27');
INSERT INTO `sys_logininfor` VALUES (15, 'admin', '127.0.0.1', '0', '登录成功', '2024-04-13 22:39:14');
INSERT INTO `sys_logininfor` VALUES (16, 'admin', '127.0.0.1', '0', '登录成功', '2024-04-14 04:07:44');
INSERT INTO `sys_logininfor` VALUES (17, 'admin', '127.0.0.1', '0', '登录成功', '2024-04-14 15:11:34');
INSERT INTO `sys_logininfor` VALUES (18, 'admin', '127.0.0.1', '0', '登录成功', '2024-04-14 15:49:34');
INSERT INTO `sys_logininfor` VALUES (19, 'admin', '127.0.0.1', '0', '登录成功', '2024-04-14 17:31:22');
INSERT INTO `sys_logininfor` VALUES (20, 'admin', '127.0.0.1', '0', '登录成功', '2024-04-14 18:20:00');
INSERT INTO `sys_logininfor` VALUES (21, 'admin', '127.0.0.1', '0', '登录成功', '2024-04-14 21:30:45');
INSERT INTO `sys_logininfor` VALUES (22, 'admin', '127.0.0.1', '0', '登录成功', '2024-04-14 23:27:44');
INSERT INTO `sys_logininfor` VALUES (23, 'admin', '127.0.0.1', '0', '退出成功', '2024-04-14 23:27:52');
INSERT INTO `sys_logininfor` VALUES (24, 'xiaoniu_test', '127.0.0.1', '0', '登录成功', '2024-04-14 23:28:01');
INSERT INTO `sys_logininfor` VALUES (25, 'admin', '127.0.0.1', '0', '退出成功', '2024-04-14 23:28:51');
INSERT INTO `sys_logininfor` VALUES (26, 'admin', '127.0.0.1', '0', '登录成功', '2024-04-14 23:36:43');
INSERT INTO `sys_logininfor` VALUES (27, 'admin', '127.0.0.1', '0', '登录成功', '2024-04-15 09:26:53');
INSERT INTO `sys_logininfor` VALUES (28, 'admin', '127.0.0.1', '0', '退出成功', '2024-04-15 09:27:01');
INSERT INTO `sys_logininfor` VALUES (29, 'admin', '127.0.0.1', '0', '登录成功', '2024-04-15 09:27:17');
INSERT INTO `sys_logininfor` VALUES (30, 'admin', '127.0.0.1', '0', '登录成功', '2024-04-15 09:31:37');
INSERT INTO `sys_logininfor` VALUES (31, 'admin', '127.0.0.1', '0', '退出成功', '2024-04-15 09:59:23');
INSERT INTO `sys_logininfor` VALUES (32, 'admin', '127.0.0.1', '0', '登录成功', '2024-04-15 09:59:29');
INSERT INTO `sys_logininfor` VALUES (33, 'admin', '127.0.0.1', '0', '登录成功', '2024-04-15 11:01:20');
INSERT INTO `sys_logininfor` VALUES (34, 'admin', '127.0.0.1', '0', '登录成功', '2024-04-15 11:15:10');
INSERT INTO `sys_logininfor` VALUES (35, 'admin', '127.0.0.1', '0', '退出成功', '2024-04-15 11:48:57');
INSERT INTO `sys_logininfor` VALUES (36, 'admin', '127.0.0.1', '0', '登录成功', '2024-04-15 20:55:03');
INSERT INTO `sys_logininfor` VALUES (37, 'admin', '171.8.60.169', '0', '登录成功', '2024-04-16 21:08:55');
INSERT INTO `sys_logininfor` VALUES (38, 'admin', '171.8.60.169', '0', '登录成功', '2024-04-16 21:27:21');
INSERT INTO `sys_logininfor` VALUES (39, 'admin', '171.8.60.169', '0', '登录成功', '2024-04-16 22:39:27');
INSERT INTO `sys_logininfor` VALUES (40, 'admin', '171.8.60.169', '0', '登录成功', '2024-04-17 09:53:49');
INSERT INTO `sys_logininfor` VALUES (41, 'admin', '171.8.60.190', '0', '登录成功', '2024-04-17 13:51:44');
INSERT INTO `sys_logininfor` VALUES (42, 'admin', '171.8.60.190', '0', '登录成功', '2024-04-17 13:54:45');
INSERT INTO `sys_logininfor` VALUES (43, 'admin', '171.8.60.190', '0', '退出成功', '2024-04-17 13:56:07');
INSERT INTO `sys_logininfor` VALUES (44, 'admin', '171.8.60.190', '1', '密码输入错误1次', '2024-04-17 13:56:37');
INSERT INTO `sys_logininfor` VALUES (45, 'admin', '171.8.60.190', '0', '登录成功', '2024-04-17 13:56:59');
INSERT INTO `sys_logininfor` VALUES (46, 'admin', '171.8.60.190', '0', '登录成功', '2024-04-17 14:00:33');
INSERT INTO `sys_logininfor` VALUES (47, 'admin', '171.8.60.190', '0', '登录成功', '2024-04-17 14:26:19');
-- ----------------------------
-- Table structure for sys_menu
-- ----------------------------
DROP TABLE IF EXISTS `sys_menu`;
CREATE TABLE `sys_menu` (
`menu_id` bigint NOT NULL AUTO_INCREMENT COMMENT '菜单ID',
`menu_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '菜单名称',
`parent_id` bigint NULL DEFAULT 0 COMMENT '父菜单ID',
`order_num` int NULL DEFAULT 0 COMMENT '显示顺序',
`path` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '路由地址',
`component` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '组件路径',
`query` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '路由参数',
`is_frame` int NULL DEFAULT 1 COMMENT '是否为外链(0是 1否)',
`is_cache` int NULL DEFAULT 0 COMMENT '是否缓存(0缓存 1不缓存)',
`menu_type` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '菜单类型(M目录 C菜单 F按钮)',
`visible` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '菜单状态(0显示 1隐藏)',
`status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '菜单状态(0正常 1停用)',
`perms` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '权限标识',
`icon` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '#' COMMENT '菜单图标',
`create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '创建者',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '更新者',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '备注',
PRIMARY KEY (`menu_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2075 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '菜单权限表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of sys_menu
-- ----------------------------
INSERT INTO `sys_menu` VALUES (1, '系统管理', 0, 97, 'system', NULL, '', 1, 0, 'M', '0', '0', '', 'system', 'admin', '2024-04-12 15:37:35', 'admin', '2024-04-14 23:21:09', '系统管理目录');
INSERT INTO `sys_menu` VALUES (2, '系统监控', 0, 98, 'monitor', NULL, '', 1, 0, 'M', '0', '0', '', 'monitor', 'admin', '2024-04-12 15:37:35', 'admin', '2024-04-14 23:21:04', '系统监控目录');
INSERT INTO `sys_menu` VALUES (3, '系统工具', 0, 99, 'tool', NULL, '', 1, 0, 'M', '1', '1', '', 'tool', 'admin', '2024-04-12 15:37:35', 'admin', '2024-04-17 13:54:07', '系统工具目录');
INSERT INTO `sys_menu` VALUES (100, '用户管理', 1, 1, 'user', 'system/user/index', '', 1, 0, 'C', '0', '0', 'system:user:list', 'user', 'admin', '2024-04-12 15:37:35', '', NULL, '用户管理菜单');
INSERT INTO `sys_menu` VALUES (101, '角色管理', 1, 2, 'role', 'system/role/index', '', 1, 0, 'C', '0', '0', 'system:role:list', 'peoples', 'admin', '2024-04-12 15:37:35', '', NULL, '角色管理菜单');
INSERT INTO `sys_menu` VALUES (102, '菜单管理', 1, 3, 'menu', 'system/menu/index', '', 1, 0, 'C', '0', '0', 'system:menu:list', 'tree-table', 'admin', '2024-04-12 15:37:35', '', NULL, '菜单管理菜单');
INSERT INTO `sys_menu` VALUES (103, '部门管理', 1, 4, 'dept', 'system/dept/index', '', 1, 0, 'C', '0', '0', 'system:dept:list', 'tree', 'admin', '2024-04-12 15:37:35', '', NULL, '部门管理菜单');
INSERT INTO `sys_menu` VALUES (104, '岗位管理', 1, 5, 'post', 'system/post/index', '', 1, 0, 'C', '0', '0', 'system:post:list', 'post', 'admin', '2024-04-12 15:37:35', '', NULL, '岗位管理菜单');
INSERT INTO `sys_menu` VALUES (105, '字典管理', 1, 6, 'dict', 'system/dict/index', '', 1, 0, 'C', '0', '0', 'system:dict:list', 'dict', 'admin', '2024-04-12 15:37:35', '', NULL, '字典管理菜单');
INSERT INTO `sys_menu` VALUES (106, '参数设置', 1, 7, 'config', 'system/config/index', '', 1, 0, 'C', '0', '0', 'system:config:list', 'edit', 'admin', '2024-04-12 15:37:35', '', NULL, '参数设置菜单');
INSERT INTO `sys_menu` VALUES (107, '通知公告', 1, 8, 'notice', 'system/notice/index', '', 1, 0, 'C', '0', '0', 'system:notice:list', 'message', 'admin', '2024-04-12 15:37:35', '', NULL, '通知公告菜单');
INSERT INTO `sys_menu` VALUES (108, '日志管理', 1, 9, 'log', '', '', 1, 0, 'M', '0', '0', '', 'log', 'admin', '2024-04-12 15:37:35', '', NULL, '日志管理菜单');
INSERT INTO `sys_menu` VALUES (109, '在线用户', 2, 1, 'online', 'monitor/online/index', '', 1, 0, 'C', '0', '0', 'monitor:online:list', 'online', 'admin', '2024-04-12 15:37:35', '', NULL, '在线用户菜单');
INSERT INTO `sys_menu` VALUES (111, 'Sentinel控制台', 2, 3, 'http://122.51.150.70:8718/', '', '', 0, 1, 'C', '1', '1', 'monitor:sentinel:list', 'sentinel', 'admin', '2024-04-12 15:37:35', 'admin', '2024-04-17 13:53:22', '流量控制菜单');
INSERT INTO `sys_menu` VALUES (112, 'Nacos控制台', 2, 4, 'https://museumserver.xnszz.com/nacos', '', '', 0, 0, 'C', '0', '0', 'monitor:nacos:list', 'nacos', 'admin', '2024-04-12 15:37:35', 'admin', '2024-04-17 13:52:35', '服务治理菜单');
INSERT INTO `sys_menu` VALUES (113, 'Admin控制台', 2, 5, 'http://122.51.150.70:9100', '', '', 0, 1, 'C', '1', '1', 'monitor:server:list', 'server', 'admin', '2024-04-14 04:48:53', 'admin', '2024-04-17 13:53:51', '服务监控菜单');
INSERT INTO `sys_menu` VALUES (114, '表单构建', 3, 1, 'build', 'tool/build/index', '', 1, 0, 'C', '0', '0', 'tool:build:list', 'build', 'admin', '2024-04-12 15:37:35', '', NULL, '表单构建菜单');
INSERT INTO `sys_menu` VALUES (115, '代码生成', 3, 2, 'gen', 'tool/gen/index', '', 1, 0, 'C', '0', '0', 'tool:gen:list', 'code', 'admin', '2024-04-12 15:37:35', 'admin', '2024-04-17 13:54:04', '代码生成菜单');
INSERT INTO `sys_menu` VALUES (500, '操作日志', 108, 1, 'operlog', 'system/operlog/index', '', 1, 0, 'C', '0', '0', 'system:operlog:list', 'form', 'admin', '2024-04-12 15:37:35', '', NULL, '操作日志菜单');
INSERT INTO `sys_menu` VALUES (501, '登录日志', 108, 2, 'logininfor', 'system/logininfor/index', '', 1, 0, 'C', '0', '0', 'system:logininfor:list', 'logininfor', 'admin', '2024-04-12 15:37:35', '', NULL, '登录日志菜单');
INSERT INTO `sys_menu` VALUES (1000, '用户查询', 100, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:user:query', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1001, '用户新增', 100, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:user:add', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1002, '用户修改', 100, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:user:edit', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1003, '用户删除', 100, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:user:remove', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1004, '用户导出', 100, 5, '', '', '', 1, 0, 'F', '0', '0', 'system:user:export', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1005, '用户导入', 100, 6, '', '', '', 1, 0, 'F', '0', '0', 'system:user:import', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1006, '重置密码', 100, 7, '', '', '', 1, 0, 'F', '0', '0', 'system:user:resetPwd', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1007, '角色查询', 101, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:role:query', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1008, '角色新增', 101, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:role:add', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1009, '角色修改', 101, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:role:edit', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1010, '角色删除', 101, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:role:remove', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1011, '角色导出', 101, 5, '', '', '', 1, 0, 'F', '0', '0', 'system:role:export', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1012, '菜单查询', 102, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:query', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1013, '菜单新增', 102, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:add', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1014, '菜单修改', 102, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:edit', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1015, '菜单删除', 102, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:remove', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1016, '部门查询', 103, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:query', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1017, '部门新增', 103, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:add', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1018, '部门修改', 103, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:edit', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1019, '部门删除', 103, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:remove', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1020, '岗位查询', 104, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:post:query', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1021, '岗位新增', 104, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:post:add', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1022, '岗位修改', 104, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:post:edit', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1023, '岗位删除', 104, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:post:remove', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1024, '岗位导出', 104, 5, '', '', '', 1, 0, 'F', '0', '0', 'system:post:export', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1025, '字典查询', 105, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:query', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1026, '字典新增', 105, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:add', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1027, '字典修改', 105, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:edit', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1028, '字典删除', 105, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:remove', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1029, '字典导出', 105, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:export', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1030, '参数查询', 106, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:query', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1031, '参数新增', 106, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:add', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1032, '参数修改', 106, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:edit', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1033, '参数删除', 106, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:remove', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1034, '参数导出', 106, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:export', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1035, '公告查询', 107, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:query', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1036, '公告新增', 107, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:add', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1037, '公告修改', 107, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:edit', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1038, '公告删除', 107, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:remove', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1039, '操作查询', 500, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:operlog:query', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1040, '操作删除', 500, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:operlog:remove', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1041, '日志导出', 500, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:operlog:export', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1042, '登录查询', 501, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:logininfor:query', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1043, '登录删除', 501, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:logininfor:remove', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1044, '日志导出', 501, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:logininfor:export', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1045, '账户解锁', 501, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:logininfor:unlock', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1046, '在线查询', 109, 1, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:online:query', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1047, '批量强退', 109, 2, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:online:batchLogout', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1048, '单条强退', 109, 3, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:online:forceLogout', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1055, '生成查询', 115, 1, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:query', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1056, '生成修改', 115, 2, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:edit', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1057, '生成删除', 115, 3, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:remove', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1058, '导入代码', 115, 2, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:import', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1059, '预览代码', 115, 4, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:preview', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (1060, '生成代码', 115, 5, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:code', '#', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2000, '博物馆', 0, 0, 'museum', NULL, NULL, 1, 0, 'M', '0', '0', '', 'chart', 'admin', '2024-04-12 22:17:39', 'admin', '2024-04-14 23:22:28', '');
INSERT INTO `sys_menu` VALUES (2001, '轮播图管理', 2067, 1, 'banner', 'museum/banner/index', NULL, 1, 1, 'C', '0', '0', 'museum:banner:list', '#', 'admin', '2024-04-12 22:45:22', 'admin', '2024-04-14 23:21:17', '轮播图管理菜单');
INSERT INTO `sys_menu` VALUES (2002, '轮播图管理查询', 2001, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:banner:query', '#', 'admin', '2024-04-12 22:45:22', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2003, '轮播图管理新增', 2001, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:banner:add', '#', 'admin', '2024-04-12 22:45:22', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2004, '轮播图管理修改', 2001, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:banner:edit', '#', 'admin', '2024-04-12 22:45:22', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2005, '轮播图管理删除', 2001, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:banner:remove', '#', 'admin', '2024-04-12 22:45:22', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2006, '轮播图管理导出', 2001, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:banner:export', '#', 'admin', '2024-04-12 22:45:22', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2007, '活动公告', 2067, 3, 'notice', 'museum/notice/index', NULL, 1, 1, 'C', '0', '0', 'museum:notice:list', '#', 'admin', '2024-04-13 13:59:39', 'admin', '2024-04-14 23:21:31', '活动公告菜单');
INSERT INTO `sys_menu` VALUES (2008, '活动公告查询', 2007, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:notice:query', '#', 'admin', '2024-04-13 13:59:39', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2009, '活动公告新增', 2007, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:notice:add', '#', 'admin', '2024-04-13 13:59:39', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2010, '活动公告修改', 2007, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:notice:edit', '#', 'admin', '2024-04-13 13:59:39', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2011, '活动公告删除', 2007, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:notice:remove', '#', 'admin', '2024-04-13 13:59:39', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2012, '活动公告导出', 2007, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:notice:export', '#', 'admin', '2024-04-13 13:59:39', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2013, '最新资讯', 2067, 2, 'information', 'museum/information/index', NULL, 1, 1, 'C', '0', '0', 'museum:information:list', '#', 'admin', '2024-04-13 13:59:50', 'admin', '2024-04-14 23:21:23', '最新资讯菜单');
INSERT INTO `sys_menu` VALUES (2014, '最新资讯查询', 2013, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:information:query', '#', 'admin', '2024-04-13 13:59:50', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2015, '最新资讯新增', 2013, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:information:add', '#', 'admin', '2024-04-13 13:59:50', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2016, '最新资讯修改', 2013, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:information:edit', '#', 'admin', '2024-04-13 13:59:50', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2017, '最新资讯删除', 2013, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:information:remove', '#', 'admin', '2024-04-13 13:59:50', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2018, '最新资讯导出', 2013, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:information:export', '#', 'admin', '2024-04-13 13:59:50', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2019, '用户信息', 2068, 0, 'memberUser', 'museum/memberUser/index', NULL, 1, 1, 'C', '0', '0', 'museum:memberUser:list', '#', 'admin', '2024-04-13 22:53:07', 'admin', '2024-04-15 21:46:47', '用户信息菜单');
INSERT INTO `sys_menu` VALUES (2020, '用户信息查询', 2019, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:memberUser:query', '#', 'admin', '2024-04-13 22:53:07', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2021, '用户信息新增', 2019, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:memberUser:add', '#', 'admin', '2024-04-13 22:53:07', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2022, '用户信息修改', 2019, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:memberUser:edit', '#', 'admin', '2024-04-13 22:53:07', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2023, '用户信息删除', 2019, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:memberUser:remove', '#', 'admin', '2024-04-13 22:53:07', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2024, '用户信息导出', 2019, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:memberUser:export', '#', 'admin', '2024-04-13 22:53:07', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2025, '平台规则', 2067, 4, 'rule', 'museum/rule/index', NULL, 1, 1, 'C', '0', '0', 'museum:rule:list', '#', 'admin', '2024-04-14 01:44:18', 'admin', '2024-04-15 21:47:03', '平台规则菜单');
INSERT INTO `sys_menu` VALUES (2026, '平台规则查询', 2025, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:rule:query', '#', 'admin', '2024-04-14 01:44:18', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2027, '平台规则新增', 2025, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:rule:add', '#', 'admin', '2024-04-14 01:44:18', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2028, '平台规则修改', 2025, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:rule:edit', '#', 'admin', '2024-04-14 01:44:18', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2029, '平台规则删除', 2025, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:rule:remove', '#', 'admin', '2024-04-14 01:44:18', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2030, '平台规则导出', 2025, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:rule:export', '#', 'admin', '2024-04-14 01:44:18', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2031, '用户投诉', 2068, 1, 'feedback', 'museum/feedback/index', NULL, 1, 1, 'C', '0', '0', 'museum:feedback:list', '#', 'admin', '2024-04-14 02:13:17', 'admin', '2024-04-15 21:46:49', '用户投诉菜单');
INSERT INTO `sys_menu` VALUES (2032, '用户投诉查询', 2031, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:feedback:query', '#', 'admin', '2024-04-14 02:13:17', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2033, '用户投诉新增', 2031, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:feedback:add', '#', 'admin', '2024-04-14 02:13:17', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2034, '用户投诉修改', 2031, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:feedback:edit', '#', 'admin', '2024-04-14 02:13:17', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2035, '用户投诉删除', 2031, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:feedback:remove', '#', 'admin', '2024-04-14 02:13:17', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2036, '用户投诉导出', 2031, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:feedback:export', '#', 'admin', '2024-04-14 02:13:17', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2037, '博物馆分类', 2000, 0, 'museumClass', 'museum/museumClass/index', NULL, 1, 1, 'C', '0', '0', 'museum:museumClass:list', '#', 'admin', '2024-04-14 03:05:21', 'admin', '2024-04-15 21:46:34', '博物馆分类菜单');
INSERT INTO `sys_menu` VALUES (2038, '博物馆分类查询', 2037, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:museumClass:query', '#', 'admin', '2024-04-14 03:05:21', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2039, '博物馆分类新增', 2037, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:museumClass:add', '#', 'admin', '2024-04-14 03:05:21', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2040, '博物馆分类修改', 2037, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:museumClass:edit', '#', 'admin', '2024-04-14 03:05:21', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2041, '博物馆分类删除', 2037, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:museumClass:remove', '#', 'admin', '2024-04-14 03:05:21', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2042, '博物馆分类导出', 2037, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:museumClass:export', '#', 'admin', '2024-04-14 03:05:21', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2043, '博物馆信息', 2000, 1, 'museum', 'museum/museum/index', NULL, 1, 1, 'C', '0', '0', 'museum:museum:list', '#', 'admin', '2024-04-14 16:04:25', 'admin', '2024-04-15 21:46:36', '博物馆信息菜单');
INSERT INTO `sys_menu` VALUES (2044, '博物馆信息查询', 2043, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:museum:query', '#', 'admin', '2024-04-14 16:04:25', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2045, '博物馆信息新增', 2043, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:museum:add', '#', 'admin', '2024-04-14 16:04:25', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2046, '博物馆信息修改', 2043, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:museum:edit', '#', 'admin', '2024-04-14 16:04:25', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2047, '博物馆信息删除', 2043, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:museum:remove', '#', 'admin', '2024-04-14 16:04:25', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2048, '博物馆信息导出', 2043, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:museum:export', '#', 'admin', '2024-04-14 16:04:25', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2049, '博物馆机构', 2000, 2, 'museumMechanism', 'museum/museumMechanism/index', NULL, 1, 1, 'C', '0', '0', 'museum:museumMechanism:list', '#', 'admin', '2024-04-14 21:32:36', 'admin', '2024-04-15 21:46:39', '博物馆机构菜单');
INSERT INTO `sys_menu` VALUES (2050, '博物馆机构查询', 2049, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:museumMechanism:query', '#', 'admin', '2024-04-14 21:32:36', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2051, '博物馆机构新增', 2049, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:museumMechanism:add', '#', 'admin', '2024-04-14 21:32:36', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2052, '博物馆机构修改', 2049, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:museumMechanism:edit', '#', 'admin', '2024-04-14 21:32:36', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2053, '博物馆机构删除', 2049, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:museumMechanism:remove', '#', 'admin', '2024-04-14 21:32:36', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2054, '博物馆机构导出', 2049, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:museumMechanism:export', '#', 'admin', '2024-04-14 21:32:36', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2055, '节假日客流', 2000, 3, 'holidayPassenger', 'museum/holidayPassenger/index', NULL, 1, 1, 'C', '0', '0', 'museum:holidayPassenger:list', '#', 'admin', '2024-04-14 22:00:09', 'admin', '2024-04-15 21:46:41', '节假日客流菜单');
INSERT INTO `sys_menu` VALUES (2056, '节假日客流查询', 2055, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:holidayPassenger:query', '#', 'admin', '2024-04-14 22:00:09', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2057, '节假日客流新增', 2055, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:holidayPassenger:add', '#', 'admin', '2024-04-14 22:00:09', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2058, '节假日客流修改', 2055, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:holidayPassenger:edit', '#', 'admin', '2024-04-14 22:00:09', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2059, '节假日客流删除', 2055, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:holidayPassenger:remove', '#', 'admin', '2024-04-14 22:00:09', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2060, '节假日客流导出', 2055, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:holidayPassenger:export', '#', 'admin', '2024-04-14 22:00:09', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2061, '节假日', 2000, 4, 'holiday', 'museum/holiday/index', NULL, 1, 1, 'C', '0', '0', 'museum:holiday:list', '#', 'admin', '2024-04-14 22:00:14', 'admin', '2024-04-15 21:46:43', '节假日菜单');
INSERT INTO `sys_menu` VALUES (2062, '节假日查询', 2061, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:holiday:query', '#', 'admin', '2024-04-14 22:00:14', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2063, '节假日新增', 2061, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:holiday:add', '#', 'admin', '2024-04-14 22:00:14', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2064, '节假日修改', 2061, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:holiday:edit', '#', 'admin', '2024-04-14 22:00:14', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2065, '节假日删除', 2061, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:holiday:remove', '#', 'admin', '2024-04-14 22:00:14', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2066, '节假日导出', 2061, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:holiday:export', '#', 'admin', '2024-04-14 22:00:14', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2067, '平台运营', 0, 2, 'setting', NULL, NULL, 1, 0, 'M', '0', '0', '', 'button', 'admin', '2024-04-14 23:20:47', 'admin', '2024-04-14 23:22:35', '');
INSERT INTO `sys_menu` VALUES (2068, '用户管理', 0, 1, 'member', NULL, NULL, 1, 0, 'M', '0', '0', '', 'list', 'admin', '2024-04-14 23:22:11', 'admin', '2024-04-14 23:22:45', '');
INSERT INTO `sys_menu` VALUES (2069, '用户访问日志', 2068, 1, 'accessLog', 'museum/accessLog/index', NULL, 1, 1, 'C', '0', '0', 'museum:accessLog:list', '#', 'admin', '2024-04-14 23:52:00', 'admin', '2024-04-15 21:46:51', '用户访问日志菜单');
INSERT INTO `sys_menu` VALUES (2070, '用户访问日志查询', 2069, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:accessLog:query', '#', 'admin', '2024-04-14 23:52:00', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2071, '用户访问日志新增', 2069, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:accessLog:add', '#', 'admin', '2024-04-14 23:52:00', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2072, '用户访问日志修改', 2069, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:accessLog:edit', '#', 'admin', '2024-04-14 23:52:00', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2073, '用户访问日志删除', 2069, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:accessLog:remove', '#', 'admin', '2024-04-14 23:52:00', '', NULL, '');
INSERT INTO `sys_menu` VALUES (2074, '用户访问日志导出', 2069, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'museum:accessLog:export', '#', 'admin', '2024-04-14 23:52:00', '', NULL, '');
-- ----------------------------
-- Table structure for sys_notice
-- ----------------------------
DROP TABLE IF EXISTS `sys_notice`;
CREATE TABLE `sys_notice` (
`notice_id` int NOT NULL AUTO_INCREMENT COMMENT '公告ID',
`notice_title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '公告标题',
`notice_type` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '公告类型(1通知 2公告)',
`notice_content` longblob NULL COMMENT '公告内容',
`status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '公告状态(0正常 1关闭)',
`create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '创建者',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '更新者',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`notice_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 10 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '通知公告表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of sys_notice
-- ----------------------------
-- ----------------------------
-- Table structure for sys_oper_log
-- ----------------------------
DROP TABLE IF EXISTS `sys_oper_log`;
CREATE TABLE `sys_oper_log` (
`oper_id` bigint NOT NULL AUTO_INCREMENT COMMENT '日志主键',
`title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '模块标题',
`business_type` int NULL DEFAULT 0 COMMENT '业务类型(0其它 1新增 2修改 3删除)',
`method` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '方法名称',
`request_method` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '请求方式',
`operator_type` int NULL DEFAULT 0 COMMENT '操作类别(0其它 1后台用户 2手机端用户)',
`oper_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '操作人员',
`dept_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '部门名称',
`oper_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '请求URL',
`oper_ip` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '主机地址',
`oper_location` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '操作地点',
`oper_param` varchar(2000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '请求参数',
`json_result` varchar(2000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '返回参数',
`status` int NULL DEFAULT 0 COMMENT '操作状态(0正常 1异常)',
`error_msg` varchar(2000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '错误消息',
`oper_time` datetime(0) NULL DEFAULT NULL COMMENT '操作时间',
`cost_time` bigint NULL DEFAULT 0 COMMENT '消耗时间',
PRIMARY KEY (`oper_id`) USING BTREE,
INDEX `idx_sys_oper_log_bt`(`business_type`) USING BTREE,
INDEX `idx_sys_oper_log_s`(`status`) USING BTREE,
INDEX `idx_sys_oper_log_ot`(`oper_time`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 221 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '操作日志记录' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of sys_oper_log
-- ----------------------------
INSERT INTO `sys_oper_log` VALUES (1, '操作日志', 9, 'com.xiaoniu.system.controller.SysOperlogController.clean()', 'DELETE', 1, 'admin', NULL, '/operlog/clean', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-12 16:01:12', 31);
INSERT INTO `sys_oper_log` VALUES (2, '登录日志', 3, 'com.xiaoniu.system.controller.SysLogininforController.clean()', 'DELETE', 1, 'admin', NULL, '/logininfor/clean', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-12 16:01:15', 28);
INSERT INTO `sys_oper_log` VALUES (3, '代码生成', 6, 'com.xiaoniu.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"tb_banner\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-12 22:12:53', 194);
INSERT INTO `sys_oper_log` VALUES (4, '代码生成', 2, 'com.xiaoniu.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"banner\",\"className\":\"TbBanner\",\"columns\":[{\"capJavaField\":\"BannerId\",\"columnComment\":\"轮播图ID\",\"columnId\":1,\"columnName\":\"banner_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2024-04-12 22:12:52\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"1\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"bannerId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":true,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":1,\"superColumn\":false,\"tableId\":1,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"BannerTitle\",\"columnComment\":\"轮播图标题\",\"columnId\":2,\"columnName\":\"banner_title\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-12 22:12:52\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"bannerTitle\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"superColumn\":false,\"tableId\":1,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"BannerJump\",\"columnComment\":\"轮播图跳转类型(0-不跳转,1-最新展讯,2-活动公告,3-博物馆信息)\",\"columnId\":3,\"columnName\":\"banner_jump\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2024-04-12 22:12:52\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"bannerJump\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":3,\"superColumn\":false,\"tableId\":1,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"JumpResId\",\"columnComment\":\"跳转资源ID\",\"columnId\":4,\"columnName\":\"jump_res_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2024-04-12 22:12:52\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncr', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-12 22:17:11', 85);
INSERT INTO `sys_oper_log` VALUES (5, '菜单管理', 1, 'com.xiaoniu.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"车生活\",\"menuType\":\"M\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"path\":\"museum\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-12 22:17:39', 25);
INSERT INTO `sys_oper_log` VALUES (6, '代码生成', 2, 'com.xiaoniu.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"banner\",\"className\":\"TbBanner\",\"columns\":[{\"capJavaField\":\"BannerId\",\"columnComment\":\"轮播图ID\",\"columnId\":1,\"columnName\":\"banner_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2024-04-12 22:12:52\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"1\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"bannerId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":true,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":1,\"superColumn\":false,\"tableId\":1,\"updateBy\":\"\",\"updateTime\":\"2024-04-12 22:17:10\",\"usableColumn\":false},{\"capJavaField\":\"BannerTitle\",\"columnComment\":\"轮播图标题\",\"columnId\":2,\"columnName\":\"banner_title\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-12 22:12:52\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"bannerTitle\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"superColumn\":false,\"tableId\":1,\"updateBy\":\"\",\"updateTime\":\"2024-04-12 22:17:10\",\"usableColumn\":false},{\"capJavaField\":\"BannerJump\",\"columnComment\":\"轮播图跳转类型(0-不跳转,1-最新展讯,2-活动公告,3-博物馆信息)\",\"columnId\":3,\"columnName\":\"banner_jump\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2024-04-12 22:12:52\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"bannerJump\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":3,\"superColumn\":false,\"tableId\":1,\"updateBy\":\"\",\"updateTime\":\"2024-04-12 22:17:10\",\"usableColumn\":false},{\"capJavaField\":\"JumpResId\",\"columnComment\":\"跳转资源ID\",\"columnId\":4,\"columnName\":\"jump_res_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2024-04-12 22', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-12 22:18:09', 42);
INSERT INTO `sys_oper_log` VALUES (7, '用户管理', 5, 'com.xiaoniu.system.controller.SysUserController.export()', 'POST', 1, 'admin', NULL, '/user/export', '127.0.0.1', '', '{\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2024-04-12 22:46:24', 1166);
INSERT INTO `sys_oper_log` VALUES (8, '代码生成', 2, 'com.xiaoniu.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"banner\",\"className\":\"TbBanner\",\"columns\":[{\"capJavaField\":\"BannerId\",\"columnComment\":\"轮播图ID\",\"columnId\":1,\"columnName\":\"banner_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2024-04-12 22:12:52\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"1\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"bannerId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":true,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":1,\"superColumn\":false,\"tableId\":1,\"updateBy\":\"\",\"updateTime\":\"2024-04-12 22:18:09\",\"usableColumn\":false},{\"capJavaField\":\"BannerTitle\",\"columnComment\":\"轮播图标题\",\"columnId\":2,\"columnName\":\"banner_title\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-12 22:12:52\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"bannerTitle\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"superColumn\":false,\"tableId\":1,\"updateBy\":\"\",\"updateTime\":\"2024-04-12 22:18:09\",\"usableColumn\":false},{\"capJavaField\":\"BannerJump\",\"columnComment\":\"轮播图跳转类型(0-不跳转,1-最新展讯,2-活动公告,3-博物馆信息)\",\"columnId\":3,\"columnName\":\"banner_jump\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2024-04-12 22:12:52\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"bannerJump\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":3,\"superColumn\":false,\"tableId\":1,\"updateBy\":\"\",\"updateTime\":\"2024-04-12 22:18:09\",\"usableColumn\":false},{\"capJavaField\":\"JumpResId\",\"columnComment\":\"跳转资源ID\",\"columnId\":4,\"columnName\":\"jump_res_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2024-04-12 22', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 10:19:38', 102);
INSERT INTO `sys_oper_log` VALUES (9, '轮播图管理', 1, 'com.xiaoniu.museum.controller.TbBannerController.add()', 'POST', 1, 'admin', NULL, '/banner', '127.0.0.1', '', '{\"bannerId\":1,\"bannerJump\":0,\"bannerTitle\":\"海底世界(广东省博物馆)\",\"bannerUrl\":\"https://image.xnszz.com/2024/04/13/头像2_20240413112008A001.jpg\",\"createBy\":\"admin\",\"createTime\":\"2024-04-13 11:20:35\",\"delFlag\":0,\"params\":{},\"sort\":0,\"status\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 11:20:35', 184);
INSERT INTO `sys_oper_log` VALUES (10, '轮播图管理', 5, 'com.xiaoniu.museum.controller.TbBannerController.export()', 'POST', 1, 'admin', NULL, '/banner/export', '127.0.0.1', '', '{\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2024-04-13 11:42:45', 866);
INSERT INTO `sys_oper_log` VALUES (11, '轮播图管理', 5, 'com.xiaoniu.museum.controller.TbBannerController.export()', 'POST', 1, 'admin', NULL, '/banner/export', '127.0.0.1', '', '{\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2024-04-13 11:43:33', 37);
INSERT INTO `sys_oper_log` VALUES (12, '轮播图管理', 3, 'com.xiaoniu.museum.controller.TbBannerController.remove()', 'DELETE', 1, 'admin', NULL, '/banner/1', '127.0.0.1', '', '{}', NULL, 1, '', '2024-04-13 11:44:35', 4);
INSERT INTO `sys_oper_log` VALUES (13, '轮播图管理', 3, 'com.xiaoniu.museum.controller.TbBannerController.remove()', 'DELETE', 1, 'admin', NULL, '/banner/1', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 11:45:25', 90);
INSERT INTO `sys_oper_log` VALUES (14, '轮播图管理', 1, 'com.xiaoniu.museum.controller.TbBannerController.add()', 'POST', 1, 'admin', NULL, '/banner', '127.0.0.1', '', '{\"bannerId\":2,\"bannerJump\":0,\"bannerTitle\":\"重走丝绸路(南京博物馆)\",\"bannerUrl\":\"https://image.xnszz.com/2024/04/13/极限竞速:地平线 4 2023_4_25 13_12_16_20240413115654A001.png\",\"createBy\":\"admin\",\"createTime\":\"2024-04-13 11:57:48\",\"delFlag\":0,\"params\":{},\"sort\":1,\"status\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 11:57:48', 54);
INSERT INTO `sys_oper_log` VALUES (15, '轮播图管理', 2, 'com.xiaoniu.museum.controller.TbBannerController.edit()', 'PUT', 1, 'admin', NULL, '/banner', '127.0.0.1', '', '{\"bannerId\":2,\"bannerJump\":0,\"bannerTitle\":\"重走丝绸路(南京博物馆)\",\"bannerUrl\":\"https://image.xnszz.com/2024/04/13/ebd0a4175dfc26412b9899db9689a8de_20240413120707A001.png\",\"createBy\":\"admin\",\"createTime\":\"2024-04-13 11:57:48\",\"delFlag\":0,\"params\":{},\"sort\":1,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-13 12:07:21\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 12:07:22', 48);
INSERT INTO `sys_oper_log` VALUES (16, '轮播图管理', 1, 'com.xiaoniu.museum.controller.TbBannerController.add()', 'POST', 1, 'admin', NULL, '/banner', '127.0.0.1', '', '{\"bannerId\":3,\"bannerJump\":0,\"bannerTitle\":\"璀璨波斯(故宫博物馆)\",\"bannerUrl\":\"https://image.xnszz.com/2024/04/13/6e32ee4eb07c2a9a9f3a4aef946756a1_20240413120801A002.png\",\"createBy\":\"admin\",\"createTime\":\"2024-04-13 12:08:05\",\"delFlag\":0,\"params\":{},\"sort\":2,\"status\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 12:08:05', 16);
INSERT INTO `sys_oper_log` VALUES (17, '轮播图管理', 2, 'com.xiaoniu.museum.controller.TbBannerController.edit()', 'PUT', 1, 'admin', NULL, '/banner', '127.0.0.1', '', '{\"bannerId\":2,\"bannerJump\":0,\"bannerTitle\":\"重走丝绸路(南京博物馆)\",\"bannerUrl\":\"https://image.xnszz.com/2024/04/13/ebd0a4175dfc26412b9899db9689a8de_20240413120707A001.png\",\"createBy\":\"admin\",\"createTime\":\"2024-04-13 11:57:48\",\"delFlag\":0,\"params\":{},\"sort\":3,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-13 12:08:10\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 12:08:10', 11);
INSERT INTO `sys_oper_log` VALUES (18, '轮播图管理', 2, 'com.xiaoniu.museum.controller.TbBannerController.edit()', 'PUT', 1, 'admin', NULL, '/banner', '127.0.0.1', '', '{\"bannerId\":1,\"bannerJump\":0,\"bannerTitle\":\"海底世界(广东省博物馆)\",\"bannerUrl\":\"https://image.xnszz.com/2024/04/13/头像2_20240413112008A001.jpg\",\"createBy\":\"admin\",\"createTime\":\"2024-04-13 11:20:35\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-13\",\"params\":{},\"sort\":1,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-13 12:08:17\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 12:08:17', 16);
INSERT INTO `sys_oper_log` VALUES (19, '轮播图管理', 5, 'com.xiaoniu.museum.controller.TbBannerController.export()', 'POST', 1, 'admin', NULL, '/banner/export', '127.0.0.1', '', '{\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2024-04-13 12:08:23', 787);
INSERT INTO `sys_oper_log` VALUES (20, '代码生成', 6, 'com.xiaoniu.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"tb_information,tb_notice\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 13:55:35', 169);
INSERT INTO `sys_oper_log` VALUES (21, '代码生成', 3, 'com.xiaoniu.gen.controller.GenController.remove()', 'DELETE', 1, 'admin', NULL, '/gen/3', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 13:55:41', 13);
INSERT INTO `sys_oper_log` VALUES (22, '代码生成', 3, 'com.xiaoniu.gen.controller.GenController.remove()', 'DELETE', 1, 'admin', NULL, '/gen/2', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 13:55:43', 8);
INSERT INTO `sys_oper_log` VALUES (23, '代码生成', 6, 'com.xiaoniu.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"tb_notice,tb_information\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 13:55:58', 58);
INSERT INTO `sys_oper_log` VALUES (24, '代码生成', 2, 'com.xiaoniu.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"information\",\"className\":\"TbInformation\",\"columns\":[{\"capJavaField\":\"InformationId\",\"columnComment\":\"资讯ID\",\"columnId\":45,\"columnName\":\"information_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2024-04-13 13:55:58\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"1\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"informationId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":true,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":1,\"superColumn\":false,\"tableId\":4,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"InformationTitle\",\"columnComment\":\"标题\",\"columnId\":46,\"columnName\":\"information_title\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-13 13:55:58\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"informationTitle\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"superColumn\":false,\"tableId\":4,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"InformationImage\",\"columnComment\":\"展示图\",\"columnId\":47,\"columnName\":\"information_image\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-13 13:55:58\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"imageUpload\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"informationImage\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":3,\"superColumn\":false,\"tableId\":4,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"InformationIntro\",\"columnComment\":\"简介\",\"columnId\":48,\"columnName\":\"information_intro\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-13 13:55:58\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"in', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 13:56:37', 67);
INSERT INTO `sys_oper_log` VALUES (25, '代码生成', 2, 'com.xiaoniu.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"notice\",\"className\":\"TbNotice\",\"columns\":[{\"capJavaField\":\"NoticeId\",\"columnComment\":\"公告ID\",\"columnId\":60,\"columnName\":\"notice_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2024-04-13 13:55:58\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"1\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"noticeId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":true,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":1,\"superColumn\":false,\"tableId\":5,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"NoticeTitle\",\"columnComment\":\"标题\",\"columnId\":61,\"columnName\":\"notice_title\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-13 13:55:58\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"noticeTitle\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"superColumn\":false,\"tableId\":5,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"NoticeImage\",\"columnComment\":\"展示图\",\"columnId\":62,\"columnName\":\"notice_image\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-13 13:55:58\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"imageUpload\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"noticeImage\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":3,\"superColumn\":false,\"tableId\":5,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"NoticeIntro\",\"columnComment\":\"简介\",\"columnId\":63,\"columnName\":\"notice_intro\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-13 13:55:58\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 13:57:19', 34);
INSERT INTO `sys_oper_log` VALUES (26, '代码生成', 8, 'com.xiaoniu.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"tb_information,tb_notice\"}', NULL, 0, NULL, '2024-04-13 13:57:29', 330);
INSERT INTO `sys_oper_log` VALUES (27, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"museum/notice/index\",\"createTime\":\"2024-04-13 13:59:39\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2007,\"menuName\":\"活动公告\",\"menuType\":\"C\",\"orderNum\":3,\"params\":{},\"parentId\":2000,\"path\":\"notice\",\"perms\":\"museum:notice:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 14:12:12', 44);
INSERT INTO `sys_oper_log` VALUES (28, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"museum/notice/index\",\"createTime\":\"2024-04-13 13:59:39\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2007,\"menuName\":\"活动公告\",\"menuType\":\"C\",\"orderNum\":2,\"params\":{},\"parentId\":2000,\"path\":\"notice\",\"perms\":\"museum:notice:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 14:12:15', 8);
INSERT INTO `sys_oper_log` VALUES (29, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"museum/banner/index\",\"createTime\":\"2024-04-12 22:45:22\",\"icon\":\"#\",\"isCache\":\"1\",\"isFrame\":\"1\",\"menuId\":2001,\"menuName\":\"轮播图管理\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2000,\"path\":\"banner\",\"perms\":\"museum:banner:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 14:12:18', 14);
INSERT INTO `sys_oper_log` VALUES (30, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"museum/information/index\",\"createTime\":\"2024-04-13 13:59:50\",\"icon\":\"#\",\"isCache\":\"1\",\"isFrame\":\"1\",\"menuId\":2013,\"menuName\":\"最新资讯\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2000,\"path\":\"information\",\"perms\":\"museum:information:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 14:12:20', 8);
INSERT INTO `sys_oper_log` VALUES (31, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"museum/notice/index\",\"createTime\":\"2024-04-13 13:59:39\",\"icon\":\"#\",\"isCache\":\"1\",\"isFrame\":\"1\",\"menuId\":2007,\"menuName\":\"活动公告\",\"menuType\":\"C\",\"orderNum\":2,\"params\":{},\"parentId\":2000,\"path\":\"notice\",\"perms\":\"museum:notice:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 14:12:23', 8);
INSERT INTO `sys_oper_log` VALUES (32, '最新资讯', 1, 'com.xiaoniu.museum.controller.TbInformationController.add()', 'POST', 1, 'admin', NULL, '/information', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-13 14:21:21\",\"delFlag\":0,\"informationContent\":\"wwww\",\"informationId\":1,\"informationImage\":\"https://image.xnszz.com/2024/04/13/b5a194a52174922fc1beb164c493d12e_20240413142035A002.png\",\"informationIntro\":\"中华文明,是人类历史上唯一未曾中断的原生文明,具有强大的凝聚力.\",\"informationTitle\":\"何以中国\",\"museumId\":1,\"params\":{},\"status\":0,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 14:21:21', 57);
INSERT INTO `sys_oper_log` VALUES (33, '最新资讯', 2, 'com.xiaoniu.museum.controller.TbInformationController.edit()', 'PUT', 1, 'admin', NULL, '/information', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-13 14:21:21\",\"delFlag\":0,\"informationContent\":\"wwww\",\"informationId\":1,\"informationImage\":\"https://image.xnszz.com/2024/04/13/b5a194a52174922fc1beb164c493d12e_20240413142035A002.png\",\"informationIntro\":\"中华文明,是人类历史上唯一未曾中断的原生文明,具有强大的凝聚力.\",\"informationTitle\":\"何以中国\",\"museumId\":1,\"params\":{},\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-13 14:23:07\",\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 14:23:07', 8);
INSERT INTO `sys_oper_log` VALUES (34, '最新资讯', 5, 'com.xiaoniu.museum.controller.TbInformationController.export()', 'POST', 1, 'admin', NULL, '/information/export', '127.0.0.1', '', '{\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2024-04-13 14:23:25', 840);
INSERT INTO `sys_oper_log` VALUES (35, '最新资讯', 1, 'com.xiaoniu.museum.controller.TbInformationController.add()', 'POST', 1, 'admin', NULL, '/information', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-13 14:27:17\",\"delFlag\":0,\"informationContent\":\"\",\"informationId\":2,\"informationImage\":\"https://image.xnszz.com/2024/04/13/6e32ee4eb07c2a9a9f3a4aef946756a1_20240413142708A006.png\",\"informationIntro\":\"传统戏剧的婉转悠扬,街艺表演的欢快悦动,交织成悦耳的泉州古城世…\",\"informationTitle\":\"世遗2周年|声音里的世遗盛夏\",\"museumId\":1,\"params\":{},\"status\":0,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 14:27:17', 7);
INSERT INTO `sys_oper_log` VALUES (36, '最新资讯', 1, 'com.xiaoniu.museum.controller.TbInformationController.add()', 'POST', 1, 'admin', NULL, '/information', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-13 14:27:54\",\"delFlag\":0,\"informationContent\":\"\",\"informationId\":3,\"informationImage\":\"https://image.xnszz.com/2024/04/13/c0df5eda2d4964d3781e73ac28c618a4_20240413142746A007.png\",\"informationIntro\":\"这里有着6项世界级、36项国家级非物质文化遗产项目\",\"informationTitle\":\"咔擦咔擦!跟着“双遗“游西安!\",\"museumId\":1,\"params\":{},\"status\":0,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 14:27:54', 5);
INSERT INTO `sys_oper_log` VALUES (37, '最新资讯', 2, 'com.xiaoniu.museum.controller.TbInformationController.edit()', 'PUT', 1, 'admin', NULL, '/information', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-13 14:27:54\",\"delFlag\":0,\"informationContent\":\"\",\"informationId\":3,\"informationImage\":\"https://image.xnszz.com/2024/04/13/c0df5eda2d4964d3781e73ac28c618a4_20240413142746A007.png\",\"informationIntro\":\"这里有着6项世界级、36项国家级非物质文化遗产项目\",\"informationTitle\":\"咔擦咔擦!跟着“双遗“游西安!\",\"museumId\":2,\"params\":{},\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-13 14:28:19\",\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 14:28:19', 5);
INSERT INTO `sys_oper_log` VALUES (38, '活动公告', 1, 'com.xiaoniu.museum.controller.TbNoticeController.add()', 'POST', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-13 14:34:03\",\"delFlag\":0,\"museumId\":1,\"noticeContent\":\"wfwf\",\"noticeId\":1,\"noticeImage\":\"https://image.xnszz.com/2024/04/13/6f81d266572b465706aba01401bd52a8_20240413143357A009.jpg\",\"noticeTitle\":\"注意查收|来自\\\"文物鉴赏家\\\" 的邀请函\",\"params\":{},\"status\":0,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 14:34:03', 17);
INSERT INTO `sys_oper_log` VALUES (39, '活动公告', 1, 'com.xiaoniu.museum.controller.TbNoticeController.add()', 'POST', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-13 14:34:21\",\"delFlag\":0,\"museumId\":1,\"noticeContent\":\"\",\"noticeId\":2,\"noticeImage\":\"https://image.xnszz.com/2024/04/13/6f81d266572b465706aba01401bd52a8_20240413143418A010.jpg\",\"noticeTitle\":\"燃爆五一!近200项文化盛宴等 你来!\",\"params\":{},\"status\":0,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 14:34:21', 15);
INSERT INTO `sys_oper_log` VALUES (40, '活动公告', 5, 'com.xiaoniu.museum.controller.TbNoticeController.export()', 'POST', 1, 'admin', NULL, '/notice/export', '127.0.0.1', '', '{\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2024-04-13 14:34:35', 39);
INSERT INTO `sys_oper_log` VALUES (41, '最新资讯', 3, 'com.xiaoniu.museum.controller.TbInformationController.remove()', 'DELETE', 1, 'admin', NULL, '/information/3', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 14:34:40', 13);
INSERT INTO `sys_oper_log` VALUES (42, '最新资讯', 3, 'com.xiaoniu.museum.controller.TbInformationController.remove()', 'DELETE', 1, 'admin', NULL, '/information/2,1', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 14:34:42', 6);
INSERT INTO `sys_oper_log` VALUES (43, '活动公告', 3, 'com.xiaoniu.museum.controller.TbNoticeController.remove()', 'DELETE', 1, 'admin', NULL, '/notice/2', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 14:35:29', 11);
INSERT INTO `sys_oper_log` VALUES (44, '活动公告', 3, 'com.xiaoniu.museum.controller.TbNoticeController.remove()', 'DELETE', 1, 'admin', NULL, '/notice/1', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 14:35:31', 4);
INSERT INTO `sys_oper_log` VALUES (45, '代码生成', 6, 'com.xiaoniu.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"tb_member_user\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 22:49:55', 72);
INSERT INTO `sys_oper_log` VALUES (46, '代码生成', 2, 'com.xiaoniu.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"memberUser\",\"className\":\"TbMemberUser\",\"columns\":[{\"capJavaField\":\"MemberUserId\",\"columnComment\":\"用户ID\",\"columnId\":75,\"columnName\":\"member_user_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2024-04-13 22:49:55\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"1\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"memberUserId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":true,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":1,\"superColumn\":false,\"tableId\":6,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"OpenId\",\"columnComment\":\"openId\",\"columnId\":76,\"columnName\":\"open_id\",\"columnType\":\"varchar(32)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-13 22:49:55\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"openId\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"superColumn\":false,\"tableId\":6,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"UserImage\",\"columnComment\":\"用户头像\",\"columnId\":77,\"columnName\":\"user_image\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-13 22:49:55\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"imageUpload\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"userImage\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":3,\"superColumn\":false,\"tableId\":6,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"UserName\",\"columnComment\":\"用户名称\",\"columnId\":78,\"columnName\":\"user_name\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-13 22:49:55\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-13 22:51:05', 64);
INSERT INTO `sys_oper_log` VALUES (47, '代码生成', 6, 'com.xiaoniu.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"tb_rule\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 01:37:35', 53);
INSERT INTO `sys_oper_log` VALUES (48, '代码生成', 2, 'com.xiaoniu.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"rule\",\"className\":\"TbRule\",\"columns\":[{\"capJavaField\":\"RuleId\",\"columnComment\":\"规则ID\",\"columnId\":90,\"columnName\":\"rule_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 01:37:35\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"1\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"ruleId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":true,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":1,\"superColumn\":false,\"tableId\":7,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"RuleName\",\"columnComment\":\"规则名称\",\"columnId\":91,\"columnName\":\"rule_name\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 01:37:35\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"ruleName\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"LIKE\",\"required\":true,\"sort\":2,\"superColumn\":false,\"tableId\":7,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"RuleTitle\",\"columnComment\":\"规则标题\",\"columnId\":92,\"columnName\":\"rule_title\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 01:37:35\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"ruleTitle\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":3,\"superColumn\":false,\"tableId\":7,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"RuleType\",\"columnComment\":\"规则类型\",\"columnId\":93,\"columnName\":\"rule_type\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 01:37:35\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"select\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 01:44:11', 50);
INSERT INTO `sys_oper_log` VALUES (49, '平台规则', 1, 'com.xiaoniu.museum.controller.TbRuleController.add()', 'POST', 1, 'admin', NULL, '/rule', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-14 01:51:38\",\"delFlag\":0,\"params\":{},\"ruleContent\":\"124123\",\"ruleId\":1,\"ruleTitle\":\"关于我们\",\"ruleType\":\"about_us\",\"status\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 01:51:39', 45);
INSERT INTO `sys_oper_log` VALUES (50, '平台规则', 5, 'com.xiaoniu.museum.controller.TbRuleController.export()', 'POST', 1, 'admin', NULL, '/rule/export', '127.0.0.1', '', '{\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2024-04-14 01:52:26', 679);
INSERT INTO `sys_oper_log` VALUES (51, '平台规则', 3, 'com.xiaoniu.museum.controller.TbRuleController.remove()', 'DELETE', 1, 'admin', NULL, '/rule/1', '127.0.0.1', '', '{}', NULL, 1, '', '2024-04-14 01:52:44', 3);
INSERT INTO `sys_oper_log` VALUES (52, '平台规则', 3, 'com.xiaoniu.museum.controller.TbRuleController.remove()', 'DELETE', 1, 'admin', NULL, '/rule/1', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 01:53:47', 82);
INSERT INTO `sys_oper_log` VALUES (53, '平台规则', 2, 'com.xiaoniu.museum.controller.TbRuleController.edit()', 'PUT', 1, 'admin', NULL, '/rule', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-14 01:51:39\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"params\":{},\"ruleContent\":\"124123\",\"ruleId\":1,\"ruleTitle\":\"关于我们\",\"ruleType\":\"about_us\",\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-14 01:53:59\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 01:53:59', 21);
INSERT INTO `sys_oper_log` VALUES (54, '用户信息', 2, 'com.xiaoniu.museum.controller.TbMemberUserController.edit()', 'PUT', 1, 'admin', NULL, '/memberUser', '127.0.0.1', '', '{\"createTime\":\"2024-04-14 01:02:49\",\"delFlag\":0,\"loginTime\":\"2024-04-14 01:30:17\",\"loginToken\":\"1779200444384546816\",\"memberUserId\":3,\"openId\":\"oIoz75daln9lRFuvjCN9qwQUxhkI\",\"params\":{},\"status\":0,\"updateBy\":\"孙秀兰\",\"updateTime\":\"2024-04-14 01:59:41\",\"userImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414013433A013.jpg\",\"userName\":\"彭于晏\",\"userPhone\":\"18595927131\",\"userType\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 01:59:41', 9);
INSERT INTO `sys_oper_log` VALUES (55, '用户信息', 3, 'com.xiaoniu.museum.controller.TbMemberUserController.remove()', 'DELETE', 1, 'admin', NULL, '/memberUser/3', '127.0.0.1', '', '{}', NULL, 1, '', '2024-04-14 01:59:45', 2);
INSERT INTO `sys_oper_log` VALUES (56, '用户信息', 3, 'com.xiaoniu.museum.controller.TbMemberUserController.remove()', 'DELETE', 1, 'admin', NULL, '/memberUser/3', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 02:01:49', 29);
INSERT INTO `sys_oper_log` VALUES (57, '用户信息', 5, 'com.xiaoniu.museum.controller.TbMemberUserController.export()', 'POST', 1, 'admin', NULL, '/memberUser/export', '127.0.0.1', '', '{\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2024-04-14 02:04:55', 761);
INSERT INTO `sys_oper_log` VALUES (58, '代码生成', 6, 'com.xiaoniu.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"tb_feedback\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 02:10:44', 24);
INSERT INTO `sys_oper_log` VALUES (59, '代码生成', 2, 'com.xiaoniu.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"feedback\",\"className\":\"TbFeedback\",\"columns\":[{\"capJavaField\":\"FeedbackId\",\"columnComment\":\"用户投诉ID\",\"columnId\":103,\"columnName\":\"feedback_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 02:10:44\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"1\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"feedbackId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":true,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":1,\"superColumn\":false,\"tableId\":8,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"MemberUserId\",\"columnComment\":\"用户ID\",\"columnId\":104,\"columnName\":\"member_user_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 02:10:44\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"memberUserId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"superColumn\":false,\"tableId\":8,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"FeedbackContent\",\"columnComment\":\"投诉内容\",\"columnId\":105,\"columnName\":\"feedback_content\",\"columnType\":\"text\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 02:10:44\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"textarea\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"feedbackContent\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":3,\"superColumn\":false,\"tableId\":8,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"FeedbackImage\",\"columnComment\":\"投诉图片\",\"columnId\":106,\"columnName\":\"feedback_image\",\"columnType\":\"text\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 02:10:44\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"imageUpload\",\"increment\":false,\"insert\":true,\"isEdit', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 02:11:47', 17);
INSERT INTO `sys_oper_log` VALUES (60, '用户投诉', 2, 'com.xiaoniu.museum.controller.TbFeedbackController.edit()', 'PUT', 1, 'admin', NULL, '/feedback', '127.0.0.1', '', '{\"createTime\":\"2024-04-14 02:32:18\",\"delFlag\":0,\"feedbackContent\":\"sunt fugiat aliqua deserunt cupidatat\",\"feedbackId\":1,\"feedbackImage\":\"http://dummyimage.com/400x400\",\"memberUserId\":3,\"params\":{},\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-14 02:33:31\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 02:33:31', 26);
INSERT INTO `sys_oper_log` VALUES (61, '用户投诉', 5, 'com.xiaoniu.museum.controller.TbFeedbackController.export()', 'POST', 1, 'admin', NULL, '/feedback/export', '127.0.0.1', '', '{\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2024-04-14 02:33:33', 620);
INSERT INTO `sys_oper_log` VALUES (62, '代码生成', 6, 'com.xiaoniu.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"tb_museum_class\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 03:03:54', 32);
INSERT INTO `sys_oper_log` VALUES (63, '代码生成', 2, 'com.xiaoniu.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"museumClass\",\"className\":\"TbMuseumClass\",\"columns\":[{\"capJavaField\":\"MuseumClassId\",\"columnComment\":\"博物馆分类ID\",\"columnId\":116,\"columnName\":\"museum_class_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:03:54\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"1\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"museumClassId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":true,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":1,\"superColumn\":false,\"tableId\":9,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"ClassName\",\"columnComment\":\"分类名称\",\"columnId\":117,\"columnName\":\"class_name\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:03:54\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"className\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"LIKE\",\"required\":true,\"sort\":2,\"superColumn\":false,\"tableId\":9,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"EnglishName\",\"columnComment\":\"英文名\",\"columnId\":118,\"columnName\":\"english_name\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:03:54\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"englishName\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"LIKE\",\"required\":true,\"sort\":3,\"superColumn\":false,\"tableId\":9,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"ClassImage\",\"columnComment\":\"图片\",\"columnId\":119,\"columnName\":\"class_image\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:03:54\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"imageUpload\",\"increment\":false,\"insert\":tr', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 03:04:37', 16);
INSERT INTO `sys_oper_log` VALUES (64, '博物馆分类', 1, 'com.xiaoniu.museum.controller.TbMuseumClassController.add()', 'POST', 1, 'admin', NULL, '/museumClass', '127.0.0.1', '', '{\"classImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414031217A016.jpg\",\"className\":\"历史类\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:12:20\",\"delFlag\":0,\"englishName\":\"History\",\"museumClassId\":1,\"params\":{},\"sort\":0,\"status\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 03:12:20', 46);
INSERT INTO `sys_oper_log` VALUES (65, '博物馆分类', 1, 'com.xiaoniu.museum.controller.TbMuseumClassController.add()', 'POST', 1, 'admin', NULL, '/museumClass', '127.0.0.1', '', '{\"classImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414031241A017.jpg\",\"className\":\"艺术类 \",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:12:43\",\"delFlag\":0,\"englishName\":\"Artistic\",\"museumClassId\":2,\"params\":{},\"sort\":1,\"status\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 03:12:44', 5);
INSERT INTO `sys_oper_log` VALUES (66, '博物馆分类', 1, 'com.xiaoniu.museum.controller.TbMuseumClassController.add()', 'POST', 1, 'admin', NULL, '/museumClass', '127.0.0.1', '', '{\"classImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414031301A018.jpg\",\"className\":\"综合类\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:13:05\",\"delFlag\":0,\"englishName\":\"Comprehensive\",\"museumClassId\":3,\"params\":{},\"sort\":2,\"status\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 03:13:05', 4);
INSERT INTO `sys_oper_log` VALUES (67, '博物馆分类', 1, 'com.xiaoniu.museum.controller.TbMuseumClassController.add()', 'POST', 1, 'admin', NULL, '/museumClass', '127.0.0.1', '', '{\"classImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414031319A019.jpg\",\"className\":\"科学类\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:13:22\",\"delFlag\":0,\"englishName\":\"Science\",\"museumClassId\":4,\"params\":{},\"sort\":3,\"status\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 03:13:22', 5);
INSERT INTO `sys_oper_log` VALUES (68, '博物馆分类', 1, 'com.xiaoniu.museum.controller.TbMuseumClassController.add()', 'POST', 1, 'admin', NULL, '/museumClass', '127.0.0.1', '', '{\"classImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414031328A020.jpg\",\"className\":\"民俗类\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:13:39\",\"delFlag\":0,\"englishName\":\"Folklore\",\"museumClassId\":5,\"params\":{},\"sort\":4,\"status\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 03:13:39', 4);
INSERT INTO `sys_oper_log` VALUES (69, '博物馆分类', 1, 'com.xiaoniu.museum.controller.TbMuseumClassController.add()', 'POST', 1, 'admin', NULL, '/museumClass', '127.0.0.1', '', '{\"classImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414031345A021.jpg\",\"className\":\"纪念类\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:13:59\",\"delFlag\":0,\"englishName\":\"Anniversary\",\"museumClassId\":6,\"params\":{},\"sort\":5,\"status\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 03:13:59', 4);
INSERT INTO `sys_oper_log` VALUES (70, '博物馆分类', 3, 'com.xiaoniu.museum.controller.TbMuseumClassController.remove()', 'DELETE', 1, 'admin', NULL, '/museumClass/1,2,3,4,5,6', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 03:14:11', 10);
INSERT INTO `sys_oper_log` VALUES (71, '博物馆分类', 3, 'com.xiaoniu.museum.controller.TbMuseumClassController.remove()', 'DELETE', 1, 'admin', NULL, '/museumClass/1', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 03:14:27', 4);
INSERT INTO `sys_oper_log` VALUES (72, '博物馆分类', 2, 'com.xiaoniu.museum.controller.TbMuseumClassController.edit()', 'PUT', 1, 'admin', NULL, '/museumClass', '127.0.0.1', '', '{\"classImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414031217A016.jpg\",\"className\":\"历史类\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:12:20\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"englishName\":\"History\",\"museumClassId\":1,\"params\":{},\"sort\":0,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-14 03:14:37\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 03:14:37', 5);
INSERT INTO `sys_oper_log` VALUES (73, '博物馆分类', 2, 'com.xiaoniu.museum.controller.TbMuseumClassController.edit()', 'PUT', 1, 'admin', NULL, '/museumClass', '127.0.0.1', '', '{\"classImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414031217A016.jpg\",\"className\":\"历史类\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:12:20\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"englishName\":\"History\",\"museumClassId\":1,\"params\":{},\"sort\":0,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-14 03:14:44\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 03:14:44', 4);
INSERT INTO `sys_oper_log` VALUES (74, '博物馆分类', 2, 'com.xiaoniu.museum.controller.TbMuseumClassController.edit()', 'PUT', 1, 'admin', NULL, '/museumClass', '127.0.0.1', '', '{\"classImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414031217A016.jpg\",\"className\":\"历史类\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:12:20\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"englishName\":\"History\",\"museumClassId\":1,\"params\":{},\"sort\":0,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-14 03:14:50\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 03:14:50', 4);
INSERT INTO `sys_oper_log` VALUES (75, '博物馆分类', 5, 'com.xiaoniu.museum.controller.TbMuseumClassController.export()', 'POST', 1, 'admin', NULL, '/museumClass/export', '127.0.0.1', '', '{\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2024-04-14 03:14:58', 730);
INSERT INTO `sys_oper_log` VALUES (76, '代码生成', 6, 'com.xiaoniu.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"tb_museum\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 16:02:04', 119);
INSERT INTO `sys_oper_log` VALUES (77, '代码生成', 2, 'com.xiaoniu.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"museum\",\"className\":\"TbMuseum\",\"columns\":[{\"capJavaField\":\"MuseumId\",\"columnComment\":\"博物馆分类ID\",\"columnId\":129,\"columnName\":\"museum_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 16:02:04\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"1\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"museumId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":true,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":1,\"superColumn\":false,\"tableId\":10,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"MuseumName\",\"columnComment\":\"博物馆名称\",\"columnId\":130,\"columnName\":\"museum_name\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 16:02:04\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"museumName\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"LIKE\",\"required\":true,\"sort\":2,\"superColumn\":false,\"tableId\":10,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"MuseumClassId\",\"columnComment\":\"博物馆分类ID\",\"columnId\":131,\"columnName\":\"museum_class_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 16:02:04\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"museumClassId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":3,\"superColumn\":false,\"tableId\":10,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"ProvinceName\",\"columnComment\":\"省份名称\",\"columnId\":132,\"columnName\":\"province_name\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 16:02:04\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"i', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 16:03:48', 71);
INSERT INTO `sys_oper_log` VALUES (78, '代码生成', 6, 'com.xiaoniu.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"tb_region\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 16:23:52', 24);
INSERT INTO `sys_oper_log` VALUES (79, '代码生成', 2, 'com.xiaoniu.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"region\",\"className\":\"TbRegion\",\"columns\":[{\"capJavaField\":\"Id\",\"columnComment\":\"主键id\",\"columnId\":160,\"columnName\":\"id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 16:23:52\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"1\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":true,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":1,\"superColumn\":false,\"tableId\":11,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"Pid\",\"columnComment\":\"上级id\",\"columnId\":161,\"columnName\":\"pid\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 16:23:52\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"pid\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"superColumn\":false,\"tableId\":11,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"Shortname\",\"columnComment\":\"简称\",\"columnId\":162,\"columnName\":\"shortname\",\"columnType\":\"varchar(300)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 16:23:52\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"shortname\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"LIKE\",\"required\":true,\"sort\":3,\"superColumn\":false,\"tableId\":11,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"Name\",\"columnComment\":\"名称\",\"columnId\":163,\"columnName\":\"name\",\"columnType\":\"varchar(300)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 16:23:52\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"j', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 16:24:05', 15);
INSERT INTO `sys_oper_log` VALUES (80, '博物馆信息', 1, 'com.xiaoniu.museum.controller.TbMuseumController.add()', 'POST', 1, 'admin', NULL, '/museum', '127.0.0.1', '', '{\"address\":\"河北省邯郸市人民路399号\",\"audienceAmount\":136657,\"collectionAmount\":9927,\"createBy\":\"admin\",\"createTime\":\"2024-04-14 17:16:24\",\"crowdDegree\":\"拥挤\",\"delFlag\":0,\"mechanismName\":\"文物系统国有博物馆\",\"museumBanner\":\"https://image.xnszz.com/2024/04/14/6e32ee4eb07c2a9a9f3a4aef946756a1_20240414171530A002.png,https://image.xnszz.com/2024/04/14/d59a920bf37d92bf729331f24bb4907e_20240414171535A003.jpg\",\"museumClassId\":1,\"museumGrade\":\"一级\",\"museumId\":1,\"museumImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414171524A001.jpg\",\"museumIntroduce\":\"\",\"museumName\":\"邯郸市博物馆\",\"museumScore\":4.8,\"openingEnd\":\"19:00\",\"openingStart\":\"08:00\",\"openingWeek\":\"[\\\"周二\\\",\\\"周三\\\",\\\"周四\\\",\\\"周五\\\",\\\"周六\\\"]\",\"params\":{},\"preciousCollectionAmount\":252,\"provinceName\":\"邯郸市\",\"remainTicket\":333,\"reservationLink\":\"https://www.baidu.com\",\"reservationsNumber\":3566,\"showAmount\":5,\"status\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 17:16:24', 61);
INSERT INTO `sys_oper_log` VALUES (81, '博物馆信息', 2, 'com.xiaoniu.museum.controller.TbMuseumController.edit()', 'PUT', 1, 'admin', NULL, '/museum', '127.0.0.1', '', '{\"address\":\"河北省邯郸市人民路399号\",\"audienceAmount\":136657,\"cityName\":\"邯郸市\",\"collectionAmount\":9927,\"createBy\":\"admin\",\"createTime\":\"2024-04-14 17:16:24\",\"crowdDegree\":\"拥挤\",\"delFlag\":0,\"mechanismName\":\"文物系统国有博物馆\",\"museumBanner\":\"https://image.xnszz.com/2024/04/14/6e32ee4eb07c2a9a9f3a4aef946756a1_20240414171530A002.png,https://image.xnszz.com/2024/04/14/d59a920bf37d92bf729331f24bb4907e_20240414171535A003.jpg\",\"museumClassId\":1,\"museumGrade\":\"一级\",\"museumId\":1,\"museumImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414171524A001.jpg\",\"museumIntroduce\":\"\",\"museumName\":\"邯郸市博物馆\",\"museumScore\":4.8,\"openingEnd\":\"19:00\",\"openingStart\":\"08:00\",\"openingWeek\":\"[\\\"周二\\\",\\\"周三\\\",\\\"周四\\\",\\\"周五\\\",\\\"周六\\\"]\",\"params\":{},\"preciousCollectionAmount\":252,\"provinceName\":\"河北省\",\"remainTicket\":333,\"reservationLink\":\"https://www.baidu.com\",\"reservationsNumber\":3566,\"showAmount\":5,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-14 17:18:59\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 17:18:59', 10);
INSERT INTO `sys_oper_log` VALUES (82, '博物馆信息', 5, 'com.xiaoniu.museum.controller.TbMuseumController.export()', 'POST', 1, 'admin', NULL, '/museum/export', '127.0.0.1', '', '{\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2024-04-14 17:48:36', 690);
INSERT INTO `sys_oper_log` VALUES (83, '博物馆信息', 2, 'com.xiaoniu.museum.controller.TbMuseumController.edit()', 'PUT', 1, 'admin', NULL, '/museum', '127.0.0.1', '', '{\"address\":\"河北省邯郸市人民路399号\",\"audienceAmount\":136657,\"cityName\":\"邯郸市\",\"collectionAmount\":9927,\"createBy\":\"admin\",\"createTime\":\"2024-04-14 17:16:24\",\"crowdDegree\":\"拥挤\",\"delFlag\":0,\"mechanismName\":\"文物系统国有博物馆\",\"museumBanner\":\"https://image.xnszz.com/2024/04/14/6e32ee4eb07c2a9a9f3a4aef946756a1_20240414171530A002.png,https://image.xnszz.com/2024/04/14/d59a920bf37d92bf729331f24bb4907e_20240414171535A003.jpg\",\"museumClassId\":1,\"museumGrade\":\"一级\",\"museumId\":1,\"museumImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414171524A001.jpg\",\"museumIntroduce\":\"\",\"museumName\":\"邯郸市博物馆\",\"museumScore\":4.8,\"openingEnd\":\"19:00\",\"openingStart\":\"08:00\",\"openingWeek\":\"[\\\"周二\\\",\\\"周三\\\",\\\"周四\\\",\\\"周五\\\",\\\"周六\\\"],周三,周四,周五,周日,周六\",\"params\":{},\"preciousCollectionAmount\":252,\"provinceName\":\"河北省\",\"remainTicket\":333,\"reservationLink\":\"https://www.baidu.com\",\"reservationsNumber\":3566,\"showAmount\":5,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-14 18:05:21\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 18:05:21', 32);
INSERT INTO `sys_oper_log` VALUES (84, '博物馆信息', 2, 'com.xiaoniu.museum.controller.TbMuseumController.edit()', 'PUT', 1, 'admin', NULL, '/museum', '127.0.0.1', '', '{\"address\":\"河北省邯郸市人民路399号\",\"audienceAmount\":136657,\"cityName\":\"邯郸市\",\"collectionAmount\":9927,\"createBy\":\"admin\",\"createTime\":\"2024-04-14 17:16:24\",\"crowdDegree\":\"拥挤\",\"delFlag\":0,\"mechanismName\":\"文物系统国有博物馆\",\"museumBanner\":\"https://image.xnszz.com/2024/04/14/6e32ee4eb07c2a9a9f3a4aef946756a1_20240414171530A002.png,https://image.xnszz.com/2024/04/14/d59a920bf37d92bf729331f24bb4907e_20240414171535A003.jpg\",\"museumClassId\":1,\"museumGrade\":\"一级\",\"museumId\":1,\"museumImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414171524A001.jpg\",\"museumIntroduce\":\"1\",\"museumName\":\"邯郸市博物馆\",\"museumScore\":4.8,\"openingEnd\":\"19:00\",\"openingStart\":\"08:00\",\"openingWeek\":\"周三,周四,周五,周日,周六,周一\",\"params\":{},\"preciousCollectionAmount\":252,\"provinceName\":\"河北省\",\"remainTicket\":333,\"reservationLink\":\"https://www.baidu.com\",\"reservationsNumber\":3566,\"showAmount\":5,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-14 18:05:46\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 18:05:46', 6);
INSERT INTO `sys_oper_log` VALUES (85, '博物馆信息', 2, 'com.xiaoniu.museum.controller.TbMuseumController.edit()', 'PUT', 1, 'admin', NULL, '/museum', '127.0.0.1', '', '{\"address\":\"河北省邯郸市人民路399号\",\"audienceAmount\":136657,\"cityName\":\"邯郸市\",\"collectionAmount\":9927,\"createBy\":\"admin\",\"createTime\":\"2024-04-14 17:16:24\",\"crowdDegree\":\"拥挤\",\"delFlag\":0,\"mechanismName\":\"文物系统国有博物馆\",\"museumBanner\":\"https://image.xnszz.com/2024/04/14/6e32ee4eb07c2a9a9f3a4aef946756a1_20240414171530A002.png,https://image.xnszz.com/2024/04/14/d59a920bf37d92bf729331f24bb4907e_20240414171535A003.jpg\",\"museumClassId\":1,\"museumGrade\":\"一级\",\"museumId\":1,\"museumImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414171524A001.jpg\",\"museumIntroduce\":\"1\",\"museumName\":\"邯郸市博物馆\",\"museumScore\":4.8,\"openingEnd\":\"19:00\",\"openingStart\":\"08:00\",\"openingWeek\":\"周三,周四,周五,周日,周六,周一\",\"params\":{},\"preciousCollectionAmount\":252,\"provinceName\":\"河北省\",\"remainTicket\":333,\"reservationLink\":\"https://www.baidu.com\",\"reservationsNumber\":3566,\"showAmount\":5,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-14 18:07:05\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 18:07:05', 4);
INSERT INTO `sys_oper_log` VALUES (86, '博物馆信息', 2, 'com.xiaoniu.museum.controller.TbMuseumController.edit()', 'PUT', 1, 'admin', NULL, '/museum', '127.0.0.1', '', '{\"address\":\"河北省邯郸市人民路399号\",\"audienceAmount\":136657,\"cityName\":\"邯郸市\",\"collectionAmount\":9927,\"createBy\":\"admin\",\"createTime\":\"2024-04-14 17:16:24\",\"crowdDegree\":\"拥挤\",\"delFlag\":0,\"mechanismName\":\"文物系统国有博物馆\",\"museumBanner\":\"https://image.xnszz.com/2024/04/14/6e32ee4eb07c2a9a9f3a4aef946756a1_20240414171530A002.png,https://image.xnszz.com/2024/04/14/d59a920bf37d92bf729331f24bb4907e_20240414171535A003.jpg\",\"museumClassId\":1,\"museumGrade\":\"一级\",\"museumId\":1,\"museumImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414171524A001.jpg\",\"museumIntroduce\":\"1\",\"museumName\":\"邯郸市博物馆\",\"museumScore\":4.8,\"openingEnd\":\"19:00\",\"openingStart\":\"08:00\",\"openingWeek\":\"周三,周四,周五,周日,周六,周一\",\"params\":{},\"preciousCollectionAmount\":252,\"provinceName\":\"河北省\",\"remainTicket\":333,\"reservationLink\":\"https://www.baidu.com\",\"reservationsNumber\":3566,\"showAmount\":5,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-14 18:08:47\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 18:08:47', 7);
INSERT INTO `sys_oper_log` VALUES (87, '博物馆信息', 2, 'com.xiaoniu.museum.controller.TbMuseumController.edit()', 'PUT', 1, 'admin', NULL, '/museum', '127.0.0.1', '', '{\"address\":\"河北省邯郸市人民路399号\",\"audienceAmount\":136657,\"cityName\":\"邯郸市\",\"collectionAmount\":9927,\"createBy\":\"admin\",\"createTime\":\"2024-04-14 17:16:24\",\"crowdDegree\":\"拥挤\",\"delFlag\":0,\"mechanismName\":\"文物系统国有博物馆\",\"museumBanner\":\"https://image.xnszz.com/2024/04/14/6e32ee4eb07c2a9a9f3a4aef946756a1_20240414171530A002.png,https://image.xnszz.com/2024/04/14/d59a920bf37d92bf729331f24bb4907e_20240414171535A003.jpg\",\"museumClassId\":1,\"museumGrade\":\"一级\",\"museumId\":1,\"museumImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414171524A001.jpg\",\"museumIntroduce\":\"1\",\"museumName\":\"邯郸市博物馆\",\"museumScore\":4.8,\"openingEnd\":\"19:00\",\"openingStart\":\"08:00\",\"openingWeek\":\"周三,周四,周五,周日,周六\",\"params\":{},\"preciousCollectionAmount\":252,\"provinceName\":\"河北省\",\"remainTicket\":333,\"reservationLink\":\"https://www.baidu.com\",\"reservationsNumber\":3566,\"showAmount\":5,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-14 18:08:57\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 18:08:57', 4);
INSERT INTO `sys_oper_log` VALUES (88, '博物馆信息', 2, 'com.xiaoniu.museum.controller.TbMuseumController.edit()', 'PUT', 1, 'admin', NULL, '/museum', '127.0.0.1', '', '{\"address\":\"河北省邯郸市人民路399号\",\"audienceAmount\":136657,\"cityName\":\"邯郸市\",\"collectionAmount\":9927,\"createBy\":\"admin\",\"createTime\":\"2024-04-14 17:16:24\",\"crowdDegree\":\"拥挤\",\"delFlag\":0,\"mechanismName\":\"文物系统国有博物馆\",\"museumBanner\":\"https://image.xnszz.com/2024/04/14/6e32ee4eb07c2a9a9f3a4aef946756a1_20240414171530A002.png,https://image.xnszz.com/2024/04/14/d59a920bf37d92bf729331f24bb4907e_20240414171535A003.jpg\",\"museumClassId\":1,\"museumGrade\":\"一级\",\"museumId\":1,\"museumImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414171524A001.jpg\",\"museumIntroduce\":\"
qweqwewqe
dq qd d
\",\"museumName\":\"邯郸市博物馆\",\"museumScore\":4.8,\"openingEnd\":\"19:00\",\"openingStart\":\"08:00\",\"openingWeek\":\"周三,周四,周五,周日,周六\",\"params\":{},\"preciousCollectionAmount\":252,\"provinceName\":\"河北省\",\"remainTicket\":333,\"reservationLink\":\"https://www.baidu.com\",\"reservationsNumber\":3566,\"showAmount\":5,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-14 18:20:07\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 18:20:07', 7);
INSERT INTO `sys_oper_log` VALUES (89, '博物馆信息', 6, 'com.xiaoniu.museum.controller.TbMuseumController.importData()', 'POST', 1, 'admin', NULL, '/museum/importData', '127.0.0.1', '', '', '{\"msg\":\"导入成功\",\"code\":200}', 0, NULL, '2024-04-14 18:33:33', 1008);
INSERT INTO `sys_oper_log` VALUES (90, '博物馆信息', 6, 'com.xiaoniu.museum.controller.TbMuseumController.importData()', 'POST', 1, 'admin', NULL, '/museum/importData', '127.0.0.1', '', '', '{\"msg\":\"导入成功\",\"code\":200}', 0, NULL, '2024-04-14 18:37:12', 962);
INSERT INTO `sys_oper_log` VALUES (91, '博物馆信息', 6, 'com.xiaoniu.museum.controller.TbMuseumController.importData()', 'POST', 1, 'admin', NULL, '/museum/importData', '127.0.0.1', '', '', '{\"msg\":\"导入成功\",\"code\":200}', 0, NULL, '2024-04-14 18:43:09', 952);
INSERT INTO `sys_oper_log` VALUES (92, '博物馆信息', 2, 'com.xiaoniu.museum.controller.TbMuseumController.edit()', 'PUT', 1, 'admin', NULL, '/museum', '127.0.0.1', '', '{\"address\":\"河北省邯郸市人民路399号\",\"audienceAmount\":136657,\"cityName\":\"邯郸市\",\"collectionAmount\":9927,\"createBy\":\"admin\",\"createTime\":\"2024-04-14 17:16:24\",\"crowdDegree\":\"拥挤\",\"delFlag\":0,\"latitude\":\"36.609904\",\"longitude\":\"114.523593\",\"mechanismName\":\"文物系统国有博物馆\",\"museumBanner\":\"https://image.xnszz.com/2024/04/14/6e32ee4eb07c2a9a9f3a4aef946756a1_20240414171530A002.png,https://image.xnszz.com/2024/04/14/d59a920bf37d92bf729331f24bb4907e_20240414171535A003.jpg\",\"museumClassId\":1,\"museumGrade\":\"一级\",\"museumId\":1,\"museumImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414171524A001.jpg\",\"museumIntroduce\":\"
qweqwewqe
dq qd d
\",\"museumName\":\"邯郸市博物馆\",\"museumPhone\":\"18595927131\",\"museumScore\":4.8,\"openingEnd\":\"19:00\",\"openingStart\":\"08:00\",\"openingWeek\":\"周三,周四,周五,周日,周六\",\"params\":{},\"preciousCollectionAmount\":252,\"provinceName\":\"河北省\",\"remainTicket\":333,\"reservationLink\":\"https://www.baidu.com\",\"reservationsNumber\":3566,\"serialNumber\":0,\"showAmount\":5,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-14 19:50:00\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 19:50:00', 348);
INSERT INTO `sys_oper_log` VALUES (93, '博物馆信息', 2, 'com.xiaoniu.museum.controller.TbMuseumController.edit()', 'PUT', 1, 'admin', NULL, '/museum', '127.0.0.1', '', '{\"address\":\"河北省邯郸市人民路399号\",\"audienceAmount\":136657,\"cityName\":\"邯郸市\",\"collectionAmount\":9927,\"createBy\":\"admin\",\"createTime\":\"2024-04-14 17:16:24\",\"crowdDegree\":\"拥挤\",\"delFlag\":0,\"latitude\":\"36.609904\",\"longitude\":\"114.523593\",\"mechanismName\":\"文物系统国有博物馆\",\"museumBanner\":\"https://image.xnszz.com/2024/04/14/6e32ee4eb07c2a9a9f3a4aef946756a1_20240414171530A002.png,https://image.xnszz.com/2024/04/14/d59a920bf37d92bf729331f24bb4907e_20240414171535A003.jpg\",\"museumClassId\":1,\"museumGrade\":\"一级\",\"museumId\":1,\"museumImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414171524A001.jpg\",\"museumIntroduce\":\"
qweqwewqe
dq qd d
\",\"museumName\":\"邯郸市博物馆\",\"museumPhone\":\"18595927131\",\"museumScore\":4.8,\"openingEnd\":\"19:00\",\"openingStart\":\"08:00\",\"openingWeek\":\"周三,周四,周五,周日,周六\",\"params\":{},\"preciousCollectionAmount\":252,\"provinceName\":\"河北省\",\"remainTicket\":333,\"reservationLink\":\"https://www.baidu.com\",\"reservationsNumber\":3566,\"serialNumber\":0,\"showAmount\":5,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-14 19:50:01\"}', NULL, 1, '此key每日调用量已达到上限', '2024-04-14 19:51:50', 274);
INSERT INTO `sys_oper_log` VALUES (94, '博物馆信息', 2, 'com.xiaoniu.museum.controller.TbMuseumController.edit()', 'PUT', 1, 'admin', NULL, '/museum', '127.0.0.1', '', '{\"address\":\"河北省邯郸市人民路399号\",\"audienceAmount\":136657,\"cityName\":\"邯郸市\",\"collectionAmount\":9927,\"createBy\":\"admin\",\"createTime\":\"2024-04-14 17:16:24\",\"crowdDegree\":\"拥挤\",\"delFlag\":0,\"latitude\":\"36.609904\",\"longitude\":\"114.523593\",\"mechanismName\":\"文物系统国有博物馆\",\"museumBanner\":\"https://image.xnszz.com/2024/04/14/6e32ee4eb07c2a9a9f3a4aef946756a1_20240414171530A002.png,https://image.xnszz.com/2024/04/14/d59a920bf37d92bf729331f24bb4907e_20240414171535A003.jpg\",\"museumClassId\":1,\"museumGrade\":\"一级\",\"museumId\":1,\"museumImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414171524A001.jpg\",\"museumIntroduce\":\"
qweqwewqe
dq qd d
\",\"museumName\":\"邯郸市博物馆\",\"museumPhone\":\"18595927131\",\"museumScore\":4.8,\"openingEnd\":\"19:00\",\"openingStart\":\"08:00\",\"openingWeek\":\"周三,周四,周五,周日,周六\",\"params\":{},\"preciousCollectionAmount\":252,\"provinceName\":\"河北省\",\"remainTicket\":333,\"reservationLink\":\"https://www.baidu.com\",\"reservationsNumber\":3566,\"serialNumber\":0,\"showAmount\":5,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-14 19:50:01\"}', NULL, 1, '此key每日调用量已达到上限', '2024-04-14 19:52:01', 72);
INSERT INTO `sys_oper_log` VALUES (95, '博物馆信息', 2, 'com.xiaoniu.museum.controller.TbMuseumController.edit()', 'PUT', 1, 'admin', NULL, '/museum', '127.0.0.1', '', '{\"address\":\"河北省邯郸市人民路399号\",\"audienceAmount\":136657,\"cityName\":\"邯郸市\",\"collectionAmount\":9927,\"createBy\":\"admin\",\"createTime\":\"2024-04-14 17:16:24\",\"crowdDegree\":\"拥挤\",\"delFlag\":0,\"latitude\":\"36.609904\",\"longitude\":\"114.523593\",\"mechanismName\":\"文物系统国有博物馆\",\"museumBanner\":\"https://image.xnszz.com/2024/04/14/6e32ee4eb07c2a9a9f3a4aef946756a1_20240414171530A002.png,https://image.xnszz.com/2024/04/14/d59a920bf37d92bf729331f24bb4907e_20240414171535A003.jpg\",\"museumClassId\":1,\"museumGrade\":\"一级\",\"museumId\":1,\"museumImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414171524A001.jpg\",\"museumIntroduce\":\"
qweqwewqe
dq qd d
\",\"museumName\":\"邯郸市博物馆\",\"museumPhone\":\"18595927131\",\"museumScore\":4.8,\"openingEnd\":\"19:00\",\"openingStart\":\"08:00\",\"openingWeek\":\"周三,周四,周五,周日,周六\",\"params\":{},\"preciousCollectionAmount\":252,\"provinceName\":\"河北省\",\"remainTicket\":333,\"reservationLink\":\"https://www.baidu.com\",\"reservationsNumber\":3566,\"serialNumber\":0,\"showAmount\":5,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-14 19:50:01\"}', NULL, 1, '地址解析(地址转坐标)解析失败:此key每日调用量已达到上限', '2024-04-14 19:53:03', 272);
INSERT INTO `sys_oper_log` VALUES (96, '博物馆信息', 2, 'com.xiaoniu.museum.controller.TbMuseumController.edit()', 'PUT', 1, 'admin', NULL, '/museum', '127.0.0.1', '', '{\"address\":\"河北省邯郸市人民路399号\",\"audienceAmount\":136657,\"cityName\":\"邯郸市\",\"collectionAmount\":9927,\"createBy\":\"admin\",\"createTime\":\"2024-04-14 17:16:24\",\"crowdDegree\":\"拥挤\",\"delFlag\":0,\"latitude\":\"36.609904\",\"longitude\":\"114.523593\",\"mechanismName\":\"文物系统国有博物馆\",\"museumBanner\":\"https://image.xnszz.com/2024/04/14/6e32ee4eb07c2a9a9f3a4aef946756a1_20240414171530A002.png,https://image.xnszz.com/2024/04/14/d59a920bf37d92bf729331f24bb4907e_20240414171535A003.jpg\",\"museumClassId\":1,\"museumGrade\":\"一级\",\"museumId\":1,\"museumImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414171524A001.jpg\",\"museumIntroduce\":\"
qweqwewqe
dq qd d
\",\"museumName\":\"邯郸市博物馆\",\"museumPhone\":\"18595927131\",\"museumScore\":4.8,\"openingEnd\":\"19:00\",\"openingStart\":\"08:00\",\"openingWeek\":\"周三,周四,周五,周日,周六\",\"params\":{},\"preciousCollectionAmount\":252,\"provinceName\":\"河北省\",\"remainTicket\":333,\"reservationLink\":\"https://www.baidu.com\",\"reservationsNumber\":3566,\"serialNumber\":0,\"showAmount\":5,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-14 19:53:55\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 19:53:55', 189);
INSERT INTO `sys_oper_log` VALUES (97, '博物馆信息', 6, 'com.xiaoniu.museum.controller.TbMuseumController.importData()', 'POST', 1, 'admin', NULL, '/museum/importData', '127.0.0.1', '', '', NULL, 1, '地址解析(地址转坐标)解析失败:此key每日调用量已达到上限', '2024-04-14 19:58:39', 812);
INSERT INTO `sys_oper_log` VALUES (98, '代码生成', 6, 'com.xiaoniu.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"tb_museum_mechanism\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 21:30:53', 65);
INSERT INTO `sys_oper_log` VALUES (99, '代码生成', 2, 'com.xiaoniu.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"museumMechanism\",\"className\":\"TbMuseumMechanism\",\"columns\":[{\"capJavaField\":\"MuseumMechanismId\",\"columnComment\":\"博物馆机构\",\"columnId\":172,\"columnName\":\"museum_mechanism_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 21:30:53\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"1\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"museumMechanismId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":true,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":1,\"superColumn\":false,\"tableId\":12,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"Mechanism\",\"columnComment\":\"机构名称\",\"columnId\":173,\"columnName\":\"mechanism\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 21:30:53\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"mechanism\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"superColumn\":false,\"tableId\":12,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"Sort\",\"columnComment\":\"排序\",\"columnId\":174,\"columnName\":\"sort\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 21:30:53\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"sort\",\"javaType\":\"Integer\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":3,\"superColumn\":false,\"tableId\":12,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"Status\",\"columnComment\":\"状态()0-显示,1-隐藏\",\"columnId\":175,\"columnName\":\"status\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 21:30:53\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"radio\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 21:31:32', 62);
INSERT INTO `sys_oper_log` VALUES (100, '博物馆信息', 6, 'com.xiaoniu.museum.controller.TbMuseumController.importData()', 'POST', 1, 'admin', NULL, '/museum/importData', '127.0.0.1', '', '', '{\"msg\":\"导入成功\",\"code\":200}', 0, NULL, '2024-04-14 21:39:54', 995);
INSERT INTO `sys_oper_log` VALUES (101, '博物馆机构', 1, 'com.xiaoniu.museum.controller.TbMuseumMechanismController.add()', 'POST', 1, 'admin', NULL, '/museumMechanism', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-14 21:40:13\",\"delFlag\":0,\"museumMechanismId\":1,\"params\":{},\"sort\":0,\"status\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 21:40:13', 15);
INSERT INTO `sys_oper_log` VALUES (102, '博物馆机构', 1, 'com.xiaoniu.museum.controller.TbMuseumMechanismController.add()', 'POST', 1, 'admin', NULL, '/museumMechanism', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-14 21:40:20\",\"delFlag\":0,\"museumMechanismId\":2,\"params\":{},\"sort\":1,\"status\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 21:40:20', 4);
INSERT INTO `sys_oper_log` VALUES (103, '博物馆机构', 1, 'com.xiaoniu.museum.controller.TbMuseumMechanismController.add()', 'POST', 1, 'admin', NULL, '/museumMechanism', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-14 21:40:25\",\"delFlag\":0,\"museumMechanismId\":3,\"params\":{},\"sort\":2,\"status\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 21:40:25', 4);
INSERT INTO `sys_oper_log` VALUES (104, '博物馆机构', 2, 'com.xiaoniu.museum.controller.TbMuseumMechanismController.edit()', 'PUT', 1, 'admin', NULL, '/museumMechanism', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-14 21:40:14\",\"delFlag\":0,\"mechanismName\":\"文物系统国有博物馆\",\"museumMechanismId\":1,\"params\":{},\"sort\":0,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-14 21:42:24\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 21:42:24', 32);
INSERT INTO `sys_oper_log` VALUES (105, '博物馆机构', 2, 'com.xiaoniu.museum.controller.TbMuseumMechanismController.edit()', 'PUT', 1, 'admin', NULL, '/museumMechanism', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-14 21:40:20\",\"delFlag\":0,\"mechanismName\":\"其他行业国有博物馆\",\"museumMechanismId\":2,\"params\":{},\"sort\":1,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-14 21:42:26\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 21:42:26', 5);
INSERT INTO `sys_oper_log` VALUES (106, '博物馆机构', 1, 'com.xiaoniu.museum.controller.TbMuseumMechanismController.add()', 'POST', 1, 'admin', NULL, '/museumMechanism', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-14 21:42:30\",\"delFlag\":0,\"mechanismName\":\"1\",\"museumMechanismId\":4,\"params\":{},\"sort\":1,\"status\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 21:42:30', 7);
INSERT INTO `sys_oper_log` VALUES (107, '博物馆机构', 5, 'com.xiaoniu.museum.controller.TbMuseumMechanismController.export()', 'POST', 1, 'admin', NULL, '/museumMechanism/export', '127.0.0.1', '', '{\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2024-04-14 21:42:37', 650);
INSERT INTO `sys_oper_log` VALUES (108, '代码生成', 6, 'com.xiaoniu.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"tb_holiday\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 21:51:32', 14);
INSERT INTO `sys_oper_log` VALUES (109, '代码生成', 6, 'com.xiaoniu.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"tb_holiday_passenger\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 21:56:23', 19);
INSERT INTO `sys_oper_log` VALUES (110, '代码生成', 2, 'com.xiaoniu.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/tb_holiday', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 21:57:19', 20);
INSERT INTO `sys_oper_log` VALUES (111, '代码生成', 2, 'com.xiaoniu.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"holiday\",\"className\":\"TbHoliday\",\"columns\":[{\"capJavaField\":\"HolidayId\",\"columnComment\":\"节假日ID\",\"columnId\":183,\"columnName\":\"holiday_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 21:51:32\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"1\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"holidayId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":true,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":1,\"superColumn\":false,\"tableId\":13,\"updateBy\":\"\",\"updateTime\":\"2024-04-14 21:57:19\",\"usableColumn\":false},{\"capJavaField\":\"HolidayName\",\"columnComment\":\"节假日名称\",\"columnId\":184,\"columnName\":\"holiday_name\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 21:51:32\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"holidayName\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"LIKE\",\"required\":true,\"sort\":2,\"superColumn\":false,\"tableId\":13,\"updateBy\":\"\",\"updateTime\":\"2024-04-14 21:57:19\",\"usableColumn\":false},{\"capJavaField\":\"Sort\",\"columnComment\":\"排序\",\"columnId\":185,\"columnName\":\"sort\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 21:51:32\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"sort\",\"javaType\":\"Integer\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":3,\"superColumn\":false,\"tableId\":13,\"updateBy\":\"\",\"updateTime\":\"2024-04-14 21:57:19\",\"usableColumn\":false},{\"capJavaField\":\"Status\",\"columnComment\":\"状态(0-显示,1-隐藏)\",\"columnId\":186,\"columnName\":\"status\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 21:51:32\",\"dictType\":\"\",\"edit\":true,\"h', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 21:57:54', 15);
INSERT INTO `sys_oper_log` VALUES (112, '代码生成', 2, 'com.xiaoniu.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"holidayPassenger\",\"className\":\"TbHolidayPassenger\",\"columns\":[{\"capJavaField\":\"HolidayPassengerId\",\"columnComment\":\"节假日客流统计ID\",\"columnId\":187,\"columnName\":\"holiday_passenger_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 21:56:23\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"1\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"holidayPassengerId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":true,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":1,\"superColumn\":false,\"tableId\":14,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"MemberUserId\",\"columnComment\":\"上报用户ID\",\"columnId\":188,\"columnName\":\"member_user_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 21:56:23\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"memberUserId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"superColumn\":false,\"tableId\":14,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"Year\",\"columnComment\":\"年份\",\"columnId\":189,\"columnName\":\"year\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 21:56:23\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"year\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":3,\"superColumn\":false,\"tableId\":14,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"HolidayName\",\"columnComment\":\"节假日名称\",\"columnId\":190,\"columnName\":\"holiday_name\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 21:56:23\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"ins', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 21:58:55', 20);
INSERT INTO `sys_oper_log` VALUES (113, '代码生成', 8, 'com.xiaoniu.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"tb_holiday,tb_holiday_passenger\"}', NULL, 0, NULL, '2024-04-14 21:59:01', 146);
INSERT INTO `sys_oper_log` VALUES (114, '用户管理', 1, 'com.xiaoniu.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"createBy\":\"admin\",\"nickName\":\"xiaoniu_test\",\"params\":{},\"postIds\":[],\"roleIds\":[],\"status\":\"0\",\"userId\":100,\"userName\":\"xiaoniu_test\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 22:00:55', 132);
INSERT INTO `sys_oper_log` VALUES (115, '用户管理', 2, 'com.xiaoniu.system.controller.SysUserController.resetPwd()', 'PUT', 1, 'admin', NULL, '/user/resetPwd', '127.0.0.1', '', '{\"admin\":false,\"params\":{},\"updateBy\":\"admin\",\"userId\":100}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 22:01:26', 66);
INSERT INTO `sys_oper_log` VALUES (116, '个人信息', 2, 'com.xiaoniu.system.controller.SysProfileController.updatePwd()', 'PUT', 1, 'admin', NULL, '/user/profile/updatePwd', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 22:02:24', 201);
INSERT INTO `sys_oper_log` VALUES (117, '个人信息', 2, 'com.xiaoniu.system.controller.SysProfileController.updatePwd()', 'PUT', 1, 'admin', NULL, '/user/profile/updatePwd', '127.0.0.1', '', '{}', '{\"msg\":\"修改密码失败,旧密码错误\",\"code\":500}', 0, NULL, '2024-04-14 22:02:54', 59);
INSERT INTO `sys_oper_log` VALUES (118, '个人信息', 2, 'com.xiaoniu.system.controller.SysProfileController.updatePwd()', 'PUT', 1, 'admin', NULL, '/user/profile/updatePwd', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 22:03:02', 189);
INSERT INTO `sys_oper_log` VALUES (119, '用户管理', 2, 'com.xiaoniu.system.controller.SysUserController.resetPwd()', 'PUT', 1, 'admin', NULL, '/user/resetPwd', '127.0.0.1', '', '{\"admin\":false,\"params\":{},\"updateBy\":\"admin\",\"userId\":100}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 22:04:37', 68);
INSERT INTO `sys_oper_log` VALUES (120, '代码生成', 2, 'com.xiaoniu.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/tb_holiday_passenger', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 22:16:11', 26);
INSERT INTO `sys_oper_log` VALUES (121, '代码生成', 2, 'com.xiaoniu.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/tb_holiday', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 22:16:19', 17);
INSERT INTO `sys_oper_log` VALUES (122, '代码生成', 2, 'com.xiaoniu.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/tb_holiday_passenger', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 22:16:21', 20);
INSERT INTO `sys_oper_log` VALUES (123, '代码生成', 2, 'com.xiaoniu.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"holidayPassenger\",\"className\":\"TbHolidayPassenger\",\"columns\":[{\"capJavaField\":\"HolidayPassengerId\",\"columnComment\":\"节假日客流统计ID\",\"columnId\":187,\"columnName\":\"holiday_passenger_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 21:56:23\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"1\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"holidayPassengerId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":true,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":1,\"superColumn\":false,\"tableId\":14,\"updateBy\":\"\",\"updateTime\":\"2024-04-14 22:16:21\",\"usableColumn\":false},{\"capJavaField\":\"MemberUserId\",\"columnComment\":\"上报用户ID\",\"columnId\":188,\"columnName\":\"member_user_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 21:56:23\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"memberUserId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"superColumn\":false,\"tableId\":14,\"updateBy\":\"\",\"updateTime\":\"2024-04-14 22:16:21\",\"usableColumn\":false},{\"capJavaField\":\"ReportYear\",\"columnComment\":\"年份\",\"columnId\":210,\"columnName\":\"report_year\",\"columnType\":\"varchar(255)\",\"createBy\":\"\",\"createTime\":\"2024-04-14 22:16:11\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"reportYear\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":3,\"superColumn\":false,\"tableId\":14,\"updateBy\":\"\",\"updateTime\":\"2024-04-14 22:16:21\",\"usableColumn\":false},{\"capJavaField\":\"HolidayName\",\"columnComment\":\"节假日名称\",\"columnId\":190,\"columnName\":\"holiday_name\",\"columnType\":\"varchar(255)\",\"c', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 22:16:56', 14);
INSERT INTO `sys_oper_log` VALUES (124, '节假日', 1, 'com.xiaoniu.museum.controller.TbHolidayController.add()', 'POST', 1, 'admin', NULL, '/holiday', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-14 22:22:05\",\"delFlag\":0,\"holidayId\":1,\"holidayName\":\"元旦\",\"params\":{},\"sort\":0,\"status\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 22:22:05', 45);
INSERT INTO `sys_oper_log` VALUES (125, '节假日', 1, 'com.xiaoniu.museum.controller.TbHolidayController.add()', 'POST', 1, 'admin', NULL, '/holiday', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-14 22:22:11\",\"delFlag\":0,\"holidayId\":2,\"holidayName\":\"春节\",\"params\":{},\"sort\":1,\"status\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 22:22:11', 4);
INSERT INTO `sys_oper_log` VALUES (126, '节假日', 1, 'com.xiaoniu.museum.controller.TbHolidayController.add()', 'POST', 1, 'admin', NULL, '/holiday', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-14 22:22:18\",\"delFlag\":0,\"holidayId\":3,\"holidayName\":\"清明节\",\"params\":{},\"sort\":2,\"status\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 22:22:18', 5);
INSERT INTO `sys_oper_log` VALUES (127, '节假日', 1, 'com.xiaoniu.museum.controller.TbHolidayController.add()', 'POST', 1, 'admin', NULL, '/holiday', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-14 22:22:27\",\"delFlag\":0,\"holidayId\":4,\"holidayName\":\"劳动节\",\"params\":{},\"sort\":3,\"status\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 22:22:27', 5);
INSERT INTO `sys_oper_log` VALUES (128, '节假日', 1, 'com.xiaoniu.museum.controller.TbHolidayController.add()', 'POST', 1, 'admin', NULL, '/holiday', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-14 22:22:35\",\"delFlag\":0,\"holidayId\":5,\"holidayName\":\"端午节\",\"params\":{},\"sort\":4,\"status\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 22:22:35', 5);
INSERT INTO `sys_oper_log` VALUES (129, '节假日', 1, 'com.xiaoniu.museum.controller.TbHolidayController.add()', 'POST', 1, 'admin', NULL, '/holiday', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-14 22:22:41\",\"delFlag\":0,\"holidayId\":6,\"holidayName\":\"中秋节\",\"params\":{},\"sort\":5,\"status\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 22:22:41', 4);
INSERT INTO `sys_oper_log` VALUES (130, '节假日', 1, 'com.xiaoniu.museum.controller.TbHolidayController.add()', 'POST', 1, 'admin', NULL, '/holiday', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-14 22:22:48\",\"delFlag\":0,\"holidayId\":7,\"holidayName\":\"国庆节\",\"params\":{},\"sort\":6,\"status\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 22:22:48', 4);
INSERT INTO `sys_oper_log` VALUES (131, '节假日', 5, 'com.xiaoniu.museum.controller.TbHolidayController.export()', 'POST', 1, 'admin', NULL, '/holiday/export', '127.0.0.1', '', '{\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2024-04-14 22:22:50', 677);
INSERT INTO `sys_oper_log` VALUES (132, '用户信息', 2, 'com.xiaoniu.museum.controller.TbMemberUserController.edit()', 'PUT', 1, 'admin', NULL, '/memberUser', '127.0.0.1', '', '{\"createTime\":\"2024-04-14 01:02:49\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"loginTime\":\"2024-04-14 01:30:17\",\"loginToken\":\"1779200444384546816\",\"memberUserId\":3,\"openId\":\"oIoz75daln9lRFuvjCN9qwQUxhkI\",\"params\":{},\"status\":0,\"updateBy\":\"孙秀兰\",\"updateTime\":\"2024-04-14 22:52:30\",\"userImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414013433A013.jpg\",\"userName\":\"彭于晏\",\"userPhone\":\"18595927131\",\"userType\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 22:52:30', 28);
INSERT INTO `sys_oper_log` VALUES (133, '用户信息', 2, 'com.xiaoniu.museum.controller.TbMemberUserController.edit()', 'PUT', 1, 'admin', NULL, '/memberUser', '127.0.0.1', '', '{\"createTime\":\"2024-04-14 01:02:49\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"loginTime\":\"2024-04-14 01:30:17\",\"loginToken\":\"1779200444384546816\",\"memberUserId\":3,\"openId\":\"oIoz75daln9lRFuvjCN9qwQUxhkI\",\"params\":{},\"status\":1,\"updateBy\":\"孙秀兰\",\"updateTime\":\"2024-04-14 22:52:34\",\"userImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414013433A013.jpg\",\"userName\":\"彭于晏\",\"userPhone\":\"18595927131\",\"userType\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 22:52:34', 7);
INSERT INTO `sys_oper_log` VALUES (134, '用户信息', 2, 'com.xiaoniu.museum.controller.TbMemberUserController.edit()', 'PUT', 1, 'admin', NULL, '/memberUser', '127.0.0.1', '', '{\"createTime\":\"2024-04-14 01:02:49\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"loginTime\":\"2024-04-14 01:30:17\",\"loginToken\":\"1779200444384546816\",\"memberUserId\":3,\"openId\":\"oIoz75daln9lRFuvjCN9qwQUxhkI\",\"params\":{},\"status\":0,\"updateBy\":\"孙秀兰\",\"updateTime\":\"2024-04-14 22:52:39\",\"userImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414013433A013.jpg\",\"userName\":\"彭于晏\",\"userPhone\":\"18595927131\",\"userType\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 22:52:39', 5);
INSERT INTO `sys_oper_log` VALUES (135, '代码生成', 2, 'com.xiaoniu.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"holidayPassenger\",\"className\":\"TbHolidayPassenger\",\"columns\":[{\"capJavaField\":\"HolidayPassengerId\",\"columnComment\":\"节假日客流统计ID\",\"columnId\":187,\"columnName\":\"holiday_passenger_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 21:56:23\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"1\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"holidayPassengerId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":true,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":1,\"superColumn\":false,\"tableId\":14,\"updateBy\":\"\",\"updateTime\":\"2024-04-14 22:16:56\",\"usableColumn\":false},{\"capJavaField\":\"MemberUserId\",\"columnComment\":\"上报用户ID\",\"columnId\":188,\"columnName\":\"member_user_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 21:56:23\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"memberUserId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"superColumn\":false,\"tableId\":14,\"updateBy\":\"\",\"updateTime\":\"2024-04-14 22:16:56\",\"usableColumn\":false},{\"capJavaField\":\"ReportYear\",\"columnComment\":\"年份\",\"columnId\":210,\"columnName\":\"report_year\",\"columnType\":\"varchar(255)\",\"createBy\":\"\",\"createTime\":\"2024-04-14 22:16:11\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"reportYear\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":3,\"superColumn\":false,\"tableId\":14,\"updateBy\":\"\",\"updateTime\":\"2024-04-14 22:16:56\",\"usableColumn\":false},{\"capJavaField\":\"HolidayName\",\"columnComment\":\"节假日名称\",\"columnId\":190,\"columnName\":\"holiday_name\",\"columnType\":\"varchar(255)\",\"c', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 22:56:42', 18);
INSERT INTO `sys_oper_log` VALUES (136, '节假日客流', 5, 'com.xiaoniu.museum.controller.TbHolidayPassengerController.export()', 'POST', 1, 'admin', NULL, '/holidayPassenger/export', '127.0.0.1', '', '{\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2024-04-14 23:10:07', 725);
INSERT INTO `sys_oper_log` VALUES (137, '节假日客流', 5, 'com.xiaoniu.museum.controller.TbHolidayPassengerController.export()', 'POST', 1, 'admin', NULL, '/holidayPassenger/export', '127.0.0.1', '', '{\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2024-04-14 23:14:41', 593);
INSERT INTO `sys_oper_log` VALUES (138, '节假日客流', 5, 'com.xiaoniu.museum.controller.TbHolidayPassengerController.export()', 'POST', 1, 'admin', NULL, '/holidayPassenger/export', '127.0.0.1', '', '{\"reportYear\":\"2021\",\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2024-04-14 23:19:23', 25);
INSERT INTO `sys_oper_log` VALUES (139, '菜单管理', 1, 'com.xiaoniu.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"平台运营\",\"menuType\":\"M\",\"orderNum\":3,\"params\":{},\"parentId\":0,\"path\":\"setting\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:20:47', 47);
INSERT INTO `sys_oper_log` VALUES (140, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2024-04-12 15:37:35\",\"icon\":\"tool\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":3,\"menuName\":\"系统工具\",\"menuType\":\"M\",\"orderNum\":99,\"params\":{},\"parentId\":0,\"path\":\"tool\",\"perms\":\"\",\"query\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:21:00', 6);
INSERT INTO `sys_oper_log` VALUES (141, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2024-04-12 15:37:35\",\"icon\":\"monitor\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2,\"menuName\":\"系统监控\",\"menuType\":\"M\",\"orderNum\":98,\"params\":{},\"parentId\":0,\"path\":\"monitor\",\"perms\":\"\",\"query\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:21:04', 7);
INSERT INTO `sys_oper_log` VALUES (142, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2024-04-12 15:37:35\",\"icon\":\"system\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":1,\"menuName\":\"系统管理\",\"menuType\":\"M\",\"orderNum\":97,\"params\":{},\"parentId\":0,\"path\":\"system\",\"perms\":\"\",\"query\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:21:09', 5);
INSERT INTO `sys_oper_log` VALUES (143, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"museum/banner/index\",\"createTime\":\"2024-04-12 22:45:22\",\"icon\":\"#\",\"isCache\":\"1\",\"isFrame\":\"1\",\"menuId\":2001,\"menuName\":\"轮播图管理\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2067,\"path\":\"banner\",\"perms\":\"museum:banner:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:21:17', 8);
INSERT INTO `sys_oper_log` VALUES (144, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"museum/information/index\",\"createTime\":\"2024-04-13 13:59:50\",\"icon\":\"#\",\"isCache\":\"1\",\"isFrame\":\"1\",\"menuId\":2013,\"menuName\":\"最新资讯\",\"menuType\":\"C\",\"orderNum\":2,\"params\":{},\"parentId\":2067,\"path\":\"information\",\"perms\":\"museum:information:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:21:23', 5);
INSERT INTO `sys_oper_log` VALUES (145, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"museum/notice/index\",\"createTime\":\"2024-04-13 13:59:39\",\"icon\":\"#\",\"isCache\":\"1\",\"isFrame\":\"1\",\"menuId\":2007,\"menuName\":\"活动公告\",\"menuType\":\"C\",\"orderNum\":3,\"params\":{},\"parentId\":2067,\"path\":\"notice\",\"perms\":\"museum:notice:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:21:31', 5);
INSERT INTO `sys_oper_log` VALUES (146, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"museum/rule/index\",\"createTime\":\"2024-04-14 01:44:18\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2025,\"menuName\":\"平台规则\",\"menuType\":\"C\",\"orderNum\":4,\"params\":{},\"parentId\":2067,\"path\":\"rule\",\"perms\":\"museum:rule:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:21:39', 8);
INSERT INTO `sys_oper_log` VALUES (147, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"museum/holiday/index\",\"createTime\":\"2024-04-14 22:00:14\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2061,\"menuName\":\"节假日\",\"menuType\":\"C\",\"orderNum\":5,\"params\":{},\"parentId\":2067,\"path\":\"holiday\",\"perms\":\"museum:holiday:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:21:46', 5);
INSERT INTO `sys_oper_log` VALUES (148, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2024-04-12 22:17:39\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2000,\"menuName\":\"博物馆\",\"menuType\":\"M\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"path\":\"museum\",\"perms\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:21:57', 6);
INSERT INTO `sys_oper_log` VALUES (149, '菜单管理', 1, 'com.xiaoniu.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"用户管理\",\"menuType\":\"M\",\"orderNum\":1,\"params\":{},\"parentId\":0,\"path\":\"member\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:22:11', 6);
INSERT INTO `sys_oper_log` VALUES (150, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2024-04-14 23:20:47\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2067,\"menuName\":\"平台运营\",\"menuType\":\"M\",\"orderNum\":2,\"params\":{},\"parentId\":0,\"path\":\"setting\",\"perms\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:22:15', 6);
INSERT INTO `sys_oper_log` VALUES (151, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2024-04-12 22:17:39\",\"icon\":\"chart\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2000,\"menuName\":\"博物馆\",\"menuType\":\"M\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"path\":\"museum\",\"perms\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:22:28', 7);
INSERT INTO `sys_oper_log` VALUES (152, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2024-04-14 23:20:47\",\"icon\":\"button\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2067,\"menuName\":\"平台运营\",\"menuType\":\"M\",\"orderNum\":2,\"params\":{},\"parentId\":0,\"path\":\"setting\",\"perms\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:22:35', 6);
INSERT INTO `sys_oper_log` VALUES (153, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2024-04-14 23:22:11\",\"icon\":\"list\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2068,\"menuName\":\"用户管理\",\"menuType\":\"M\",\"orderNum\":1,\"params\":{},\"parentId\":0,\"path\":\"member\",\"perms\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:22:45', 6);
INSERT INTO `sys_oper_log` VALUES (154, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"museum/museumClass/index\",\"createTime\":\"2024-04-14 03:05:21\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2037,\"menuName\":\"博物馆分类\",\"menuType\":\"C\",\"orderNum\":0,\"params\":{},\"parentId\":2000,\"path\":\"museumClass\",\"perms\":\"museum:museumClass:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:22:58', 7);
INSERT INTO `sys_oper_log` VALUES (155, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"museum/museumMechanism/index\",\"createTime\":\"2024-04-14 21:32:36\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2049,\"menuName\":\"博物馆机构\",\"menuType\":\"C\",\"orderNum\":2,\"params\":{},\"parentId\":2000,\"path\":\"museumMechanism\",\"perms\":\"museum:museumMechanism:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:23:04', 5);
INSERT INTO `sys_oper_log` VALUES (156, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"museum/memberUser/index\",\"createTime\":\"2024-04-13 22:53:07\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2019,\"menuName\":\"用户信息\",\"menuType\":\"C\",\"orderNum\":0,\"params\":{},\"parentId\":2068,\"path\":\"memberUser\",\"perms\":\"museum:memberUser:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:23:12', 5);
INSERT INTO `sys_oper_log` VALUES (157, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"museum/feedback/index\",\"createTime\":\"2024-04-14 02:13:17\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2031,\"menuName\":\"用户投诉\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2068,\"path\":\"feedback\",\"perms\":\"museum:feedback:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:23:19', 4);
INSERT INTO `sys_oper_log` VALUES (158, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"museum/holidayPassenger/index\",\"createTime\":\"2024-04-14 22:00:09\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2055,\"menuName\":\"节假日客流\",\"menuType\":\"C\",\"orderNum\":3,\"params\":{},\"parentId\":2000,\"path\":\"holidayPassenger\",\"perms\":\"museum:holidayPassenger:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:23:25', 6);
INSERT INTO `sys_oper_log` VALUES (159, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"museum/holiday/index\",\"createTime\":\"2024-04-14 22:00:14\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2061,\"menuName\":\"节假日\",\"menuType\":\"C\",\"orderNum\":4,\"params\":{},\"parentId\":2000,\"path\":\"holiday\",\"perms\":\"museum:holiday:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:23:30', 7);
INSERT INTO `sys_oper_log` VALUES (160, '用户管理', 2, 'com.xiaoniu.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 22:00:55\",\"delFlag\":\"0\",\"email\":\"\",\"loginIp\":\"\",\"nickName\":\"xiaoniu_test\",\"params\":{},\"phonenumber\":\"\",\"postIds\":[],\"roleIds\":[2],\"roles\":[],\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":100,\"userName\":\"xiaoniu_test\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:27:19', 21);
INSERT INTO `sys_oper_log` VALUES (161, '角色管理', 2, 'com.xiaoniu.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"createTime\":\"2024-04-12 15:37:35\",\"dataScope\":\"2\",\"delFlag\":\"0\",\"deptCheckStrictly\":true,\"flag\":false,\"menuCheckStrictly\":true,\"menuIds\":[2000,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2068,2019,2020,2021,2022,2023,2024,2031,2032,2033,2034,2035,2036],\"params\":{},\"remark\":\"普通角色\",\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"普通角色\",\"roleSort\":2,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:27:28', 24);
INSERT INTO `sys_oper_log` VALUES (162, '用户信息', 2, 'com.xiaoniu.museum.controller.TbMemberUserController.edit()', 'PUT', 1, 'xiaoniu_test', NULL, '/memberUser', '127.0.0.1', '', '{\"createTime\":\"2024-04-14 01:02:49\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"loginTime\":\"2024-04-14 01:30:17\",\"loginToken\":\"1779200444384546816\",\"memberUserId\":3,\"openId\":\"oIoz75daln9lRFuvjCN9qwQUxhkI\",\"params\":{},\"status\":1,\"updateBy\":\"孙秀兰\",\"updateTime\":\"2024-04-14 23:28:08\",\"userImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414013433A013.jpg\",\"userName\":\"彭于晏\",\"userPhone\":\"18595927131\",\"userType\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:28:08', 19);
INSERT INTO `sys_oper_log` VALUES (163, '角色管理', 2, 'com.xiaoniu.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"createTime\":\"2024-04-12 15:37:35\",\"dataScope\":\"2\",\"delFlag\":\"0\",\"deptCheckStrictly\":true,\"flag\":false,\"menuCheckStrictly\":true,\"menuIds\":[2068,2019,2000,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2020,2021,2023,2024,2031,2032,2033,2034,2035,2036],\"params\":{},\"remark\":\"普通角色\",\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"普通角色\",\"roleSort\":2,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:28:16', 15);
INSERT INTO `sys_oper_log` VALUES (164, '用户信息', 2, 'com.xiaoniu.museum.controller.TbMemberUserController.edit()', 'PUT', 1, 'xiaoniu_test', NULL, '/memberUser', '127.0.0.1', '', '{\"createTime\":\"2024-04-14 01:02:49\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"loginTime\":\"2024-04-14 01:30:17\",\"loginToken\":\"1779200444384546816\",\"memberUserId\":3,\"openId\":\"oIoz75daln9lRFuvjCN9qwQUxhkI\",\"params\":{},\"status\":1,\"updateBy\":\"孙秀兰\",\"updateTime\":\"2024-04-14 23:28:19\",\"userImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414013433A013.jpg\",\"userName\":\"彭于晏\",\"userPhone\":\"18595927131\",\"userType\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:28:19', 5);
INSERT INTO `sys_oper_log` VALUES (165, '在线用户', 7, 'com.xiaoniu.system.controller.SysUserOnlineController.forceLogout()', 'DELETE', 1, 'admin', NULL, '/online/6556743d-069d-403e-99e1-e6cc72de9f80', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:38:51', 8);
INSERT INTO `sys_oper_log` VALUES (166, '代码生成', 6, 'com.xiaoniu.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"tb_access_log\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:50:46', 85);
INSERT INTO `sys_oper_log` VALUES (167, '代码生成', 2, 'com.xiaoniu.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"accessLog\",\"className\":\"TbAccessLog\",\"columns\":[{\"capJavaField\":\"AccessLogId\",\"columnComment\":\"用户访问日志ID\",\"columnId\":211,\"columnName\":\"access_log_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 23:50:46\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"1\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"accessLogId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":true,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":1,\"superColumn\":false,\"tableId\":15,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"MemberUserId\",\"columnComment\":\"用户ID\",\"columnId\":212,\"columnName\":\"member_user_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 23:50:46\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"memberUserId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"superColumn\":false,\"tableId\":15,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"AccessUrl\",\"columnComment\":\"访问路径\",\"columnId\":213,\"columnName\":\"access_url\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 23:50:46\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"accessUrl\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":3,\"superColumn\":false,\"tableId\":15,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"AccessDesc\",\"columnComment\":\"访问描述\",\"columnId\":214,\"columnName\":\"access_desc\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 23:50:46\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-14 23:51:08', 12);
INSERT INTO `sys_oper_log` VALUES (168, '用户信息', 2, 'com.xiaoniu.museum.controller.TbMemberUserController.edit()', 'PUT', 1, 'admin', NULL, '/memberUser', '127.0.0.1', '', '{\"createTime\":\"2024-04-14 01:02:49\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"loginTime\":\"2024-04-14 01:30:17\",\"loginToken\":\"1779200444384546816\",\"memberUserId\":3,\"openId\":\"oIoz75daln9lRFuvjCN9qwQUxhkI\",\"params\":{},\"status\":0,\"updateBy\":\"孙秀兰\",\"updateTime\":\"2024-04-15 00:16:45\",\"userImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414013433A013.jpg\",\"userName\":\"彭于晏\",\"userPhone\":\"18595927131\",\"userType\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 00:16:45', 24);
INSERT INTO `sys_oper_log` VALUES (169, '用户访问日志', 5, 'com.xiaoniu.museum.controller.TbAccessLogController.export()', 'POST', 1, 'admin', NULL, '/accessLog/export', '127.0.0.1', '', '{\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2024-04-15 00:30:31', 712);
INSERT INTO `sys_oper_log` VALUES (170, '博物馆信息', 6, 'com.xiaoniu.museum.controller.TbMuseumController.importData()', 'POST', 1, 'admin', NULL, '/museum/importData', '127.0.0.1', '', '', '{\"msg\":\"导入成功\",\"code\":200}', 0, NULL, '2024-04-15 10:55:37', 1140);
INSERT INTO `sys_oper_log` VALUES (171, '用户头像', 2, 'com.xiaoniu.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"imgUrl\":\"https://image.xnszz.com/2024/04/15/7ab4aea2e7244bacd5a7dfe1026d06af_20240415112207A001.png\",\"code\":200}', 0, NULL, '2024-04-15 11:22:09', 2389);
INSERT INTO `sys_oper_log` VALUES (172, '节假日', 2, 'com.xiaoniu.museum.controller.TbHolidayController.edit()', 'PUT', 1, 'admin', NULL, '/holiday', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-14 22:22:06\",\"delFlag\":0,\"endDate\":\"2024-01-01\",\"holidayId\":1,\"holidayName\":\"元旦\",\"params\":{},\"sort\":0,\"startDate\":\"2023-12-30\",\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-15 20:57:13\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 20:57:13', 44);
INSERT INTO `sys_oper_log` VALUES (173, '节假日', 2, 'com.xiaoniu.museum.controller.TbHolidayController.edit()', 'PUT', 1, 'admin', NULL, '/holiday', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-14 22:22:12\",\"delFlag\":0,\"endDate\":\"2024-02-17\",\"holidayId\":2,\"holidayName\":\"春节\",\"params\":{},\"sort\":1,\"startDate\":\"2024-02-10\",\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-15 20:57:48\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 20:57:49', 12);
INSERT INTO `sys_oper_log` VALUES (174, '节假日', 2, 'com.xiaoniu.museum.controller.TbHolidayController.edit()', 'PUT', 1, 'admin', NULL, '/holiday', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-14 22:22:19\",\"delFlag\":0,\"endDate\":\"2024-04-06\",\"holidayId\":3,\"holidayName\":\"清明节\",\"params\":{},\"sort\":2,\"startDate\":\"2024-04-04\",\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-15 20:57:54\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 20:57:54', 15);
INSERT INTO `sys_oper_log` VALUES (175, '节假日', 2, 'com.xiaoniu.museum.controller.TbHolidayController.edit()', 'PUT', 1, 'admin', NULL, '/holiday', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-14 22:22:27\",\"delFlag\":0,\"endDate\":\"2024-05-05\",\"holidayId\":4,\"holidayName\":\"劳动节\",\"params\":{},\"sort\":3,\"startDate\":\"2024-05-01\",\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-15 20:58:01\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 20:58:01', 8);
INSERT INTO `sys_oper_log` VALUES (176, '节假日', 2, 'com.xiaoniu.museum.controller.TbHolidayController.edit()', 'PUT', 1, 'admin', NULL, '/holiday', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-14 22:22:35\",\"delFlag\":0,\"endDate\":\"2024-06-10\",\"holidayId\":5,\"holidayName\":\"端午节\",\"params\":{},\"sort\":4,\"startDate\":\"2024-06-08\",\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-15 20:58:13\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 20:58:13', 11);
INSERT INTO `sys_oper_log` VALUES (177, '节假日', 2, 'com.xiaoniu.museum.controller.TbHolidayController.edit()', 'PUT', 1, 'admin', NULL, '/holiday', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-14 22:22:42\",\"delFlag\":0,\"endDate\":\"2024-09-17\",\"holidayId\":6,\"holidayName\":\"中秋节\",\"params\":{},\"sort\":5,\"startDate\":\"2024-09-15\",\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-15 20:58:24\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 20:58:24', 4);
INSERT INTO `sys_oper_log` VALUES (178, '节假日', 2, 'com.xiaoniu.museum.controller.TbHolidayController.edit()', 'PUT', 1, 'admin', NULL, '/holiday', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-14 22:22:48\",\"delFlag\":0,\"endDate\":\"2024-10-07\",\"holidayId\":7,\"holidayName\":\"国庆节\",\"params\":{},\"sort\":6,\"startDate\":\"2024-10-01\",\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-15 20:58:36\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 20:58:36', 4);
INSERT INTO `sys_oper_log` VALUES (179, '用户信息', 2, 'com.xiaoniu.museum.controller.TbMemberUserController.edit()', 'PUT', 1, 'admin', NULL, '/memberUser', '127.0.0.1', '', '{\"createTime\":\"2024-04-15 00:32:45\",\"delFlag\":0,\"loginTime\":\"2024-04-15 17:10:35\",\"loginToken\":\"1779799469643141120\",\"memberUserId\":4,\"museumId\":1,\"openId\":\"oIoz75S3K_f1WgKayEE9mGGQ9yl0\",\"params\":{},\"status\":0,\"updateTime\":\"2024-04-15 21:01:03\",\"userImage\":\"https://image.xnszz.com/2024/04/15/76085da6c471bbaf0f1d945c3ea696bd_20240415003237A001.jpeg\",\"userName\":\"山河乃媒灼\",\"userPhone\":\"18595927131\",\"userType\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:01:03', 10);
INSERT INTO `sys_oper_log` VALUES (180, '用户信息', 2, 'com.xiaoniu.museum.controller.TbMemberUserController.edit()', 'PUT', 1, 'admin', NULL, '/memberUser', '127.0.0.1', '', '{\"createTime\":\"2024-04-14 01:02:49\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"loginTime\":\"2024-04-15 17:12:02\",\"loginToken\":\"1779799832739844096\",\"memberUserId\":3,\"museumId\":1,\"openId\":\"oIoz75daln9lRFuvjCN9qwQUxhkI\",\"params\":{},\"status\":0,\"updateBy\":\"孙秀兰\",\"updateTime\":\"2024-04-15 21:01:26\",\"userImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414013433A013.jpg\",\"userName\":\"彭于晏\",\"userPhone\":\"18595927131\",\"userType\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:01:26', 12);
INSERT INTO `sys_oper_log` VALUES (181, '用户信息', 2, 'com.xiaoniu.museum.controller.TbMemberUserController.edit()', 'PUT', 1, 'admin', NULL, '/memberUser', '127.0.0.1', '', '{\"createTime\":\"2024-04-15 00:32:45\",\"delFlag\":0,\"loginTime\":\"2024-04-15 17:10:35\",\"loginToken\":\"1779799469643141120\",\"memberUserId\":4,\"museumId\":1,\"openId\":\"oIoz75S3K_f1WgKayEE9mGGQ9yl0\",\"params\":{},\"status\":0,\"updateTime\":\"2024-04-15 21:02:33\",\"userImage\":\"https://image.xnszz.com/2024/04/15/76085da6c471bbaf0f1d945c3ea696bd_20240415003237A001.jpeg\",\"userName\":\"山河乃媒灼\",\"userPhone\":\"18595927131\",\"userType\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:02:33', 4);
INSERT INTO `sys_oper_log` VALUES (182, '用户信息', 2, 'com.xiaoniu.museum.controller.TbMemberUserController.edit()', 'PUT', 1, 'admin', NULL, '/memberUser', '127.0.0.1', '', '{\"createTime\":\"2024-04-14 01:02:49\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"loginTime\":\"2024-04-15 17:12:02\",\"loginToken\":\"1779799832739844096\",\"memberUserId\":3,\"museumId\":1,\"openId\":\"oIoz75daln9lRFuvjCN9qwQUxhkI\",\"params\":{},\"status\":0,\"updateBy\":\"孙秀兰\",\"updateTime\":\"2024-04-15 21:05:59\",\"userImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414013433A013.jpg\",\"userName\":\"彭于晏\",\"userPhone\":\"18595927131\",\"userType\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:06:00', 42);
INSERT INTO `sys_oper_log` VALUES (183, '用户信息', 2, 'com.xiaoniu.museum.controller.TbMemberUserController.edit()', 'PUT', 1, 'admin', NULL, '/memberUser', '127.0.0.1', '', '{\"createTime\":\"2024-04-15 00:32:45\",\"delFlag\":0,\"loginTime\":\"2024-04-15 17:10:35\",\"memberUserId\":4,\"params\":{},\"status\":0,\"updateTime\":\"2024-04-15 21:11:18\",\"userImage\":\"https://image.xnszz.com/2024/04/15/76085da6c471bbaf0f1d945c3ea696bd_20240415003237A001.jpeg\",\"userName\":\"山河乃媒灼\",\"userPhone\":\"18595927131\",\"userType\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:11:18', 40);
INSERT INTO `sys_oper_log` VALUES (184, '用户信息', 2, 'com.xiaoniu.museum.controller.TbMemberUserController.edit()', 'PUT', 1, 'admin', NULL, '/memberUser', '127.0.0.1', '', '{\"createTime\":\"2024-04-14 01:02:49\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"loginTime\":\"2024-04-15 17:12:02\",\"memberUserId\":3,\"params\":{},\"status\":0,\"updateBy\":\"孙秀兰\",\"updateTime\":\"2024-04-15 21:11:24\",\"userImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414013433A013.jpg\",\"userName\":\"彭于晏\",\"userPhone\":\"18595927131\",\"userType\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:11:24', 13);
INSERT INTO `sys_oper_log` VALUES (185, '用户信息', 2, 'com.xiaoniu.museum.controller.TbMemberUserController.edit()', 'PUT', 1, 'admin', NULL, '/memberUser', '127.0.0.1', '', '{\"createTime\":\"2024-04-14 01:02:49\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"loginTime\":\"2024-04-15 17:12:02\",\"memberUserId\":3,\"museumId\":1,\"params\":{},\"status\":0,\"updateBy\":\"孙秀兰\",\"updateTime\":\"2024-04-15 21:11:27\",\"userImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414013433A013.jpg\",\"userName\":\"彭于晏\",\"userPhone\":\"18595927131\",\"userType\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:11:27', 7);
INSERT INTO `sys_oper_log` VALUES (186, '博物馆分类', 2, 'com.xiaoniu.museum.controller.TbMuseumClassController.edit()', 'PUT', 1, 'admin', NULL, '/museumClass', '127.0.0.1', '', '{\"classImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414031217A016.jpg\",\"className\":\"历史类\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:12:20\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"englishName\":\"History\",\"museumClassId\":1,\"params\":{},\"sort\":0,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-15 21:15:57\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:15:57', 33);
INSERT INTO `sys_oper_log` VALUES (187, '博物馆分类', 2, 'com.xiaoniu.museum.controller.TbMuseumClassController.edit()', 'PUT', 1, 'admin', NULL, '/museumClass', '127.0.0.1', '', '{\"classImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414031217A016.jpg\",\"className\":\"历史类\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:12:20\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"englishName\":\"History\",\"museumClassId\":1,\"params\":{},\"sort\":0,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-15 21:16:37\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:16:37', 47);
INSERT INTO `sys_oper_log` VALUES (188, '博物馆分类', 2, 'com.xiaoniu.museum.controller.TbMuseumClassController.edit()', 'PUT', 1, 'admin', NULL, '/museumClass', '127.0.0.1', '', '{\"classImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414031217A016.jpg\",\"className\":\"历史类\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:12:20\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"englishName\":\"History\",\"museumClassId\":1,\"params\":{},\"sort\":0,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-15 21:16:55\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:16:55', 6);
INSERT INTO `sys_oper_log` VALUES (189, '博物馆分类', 2, 'com.xiaoniu.museum.controller.TbMuseumClassController.edit()', 'PUT', 1, 'admin', NULL, '/museumClass', '127.0.0.1', '', '{\"classImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414031217A016.jpg\",\"className\":\"历史类\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:12:20\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"englishName\":\"History\",\"museumClassId\":1,\"params\":{},\"sort\":0,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-15 21:17:33\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:17:33', 5550);
INSERT INTO `sys_oper_log` VALUES (190, '博物馆分类', 2, 'com.xiaoniu.museum.controller.TbMuseumClassController.edit()', 'PUT', 1, 'admin', NULL, '/museumClass', '127.0.0.1', '', '{\"classColor\":\"#D0BB8F\",\"classImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414031217A016.jpg\",\"className\":\"历史类\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:12:20\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"englishName\":\"History\",\"museumClassId\":1,\"params\":{},\"sort\":0,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-15 21:18:19\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:18:19', 5);
INSERT INTO `sys_oper_log` VALUES (191, '博物馆分类', 2, 'com.xiaoniu.museum.controller.TbMuseumClassController.edit()', 'PUT', 1, 'admin', NULL, '/museumClass', '127.0.0.1', '', '{\"classColor\":\"#D0BB8F\",\"classImage\":\"https://image.xnszz.com/2024/04/15/5d029413db4e275e57b44e05f8e25c1b_20240415211901A011.png\",\"className\":\"历史类\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:12:20\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"englishName\":\"History\",\"museumClassId\":1,\"params\":{},\"sort\":0,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-15 21:19:04\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:19:04', 5);
INSERT INTO `sys_oper_log` VALUES (192, '博物馆分类', 2, 'com.xiaoniu.museum.controller.TbMuseumClassController.edit()', 'PUT', 1, 'admin', NULL, '/museumClass', '127.0.0.1', '', '{\"classColor\":\"#A99880\",\"classImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414031345A021.jpg\",\"className\":\"纪念类\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:14:00\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"englishName\":\"Anniversary\",\"museumClassId\":6,\"params\":{},\"sort\":5,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-15 21:19:14\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:19:14', 4);
INSERT INTO `sys_oper_log` VALUES (193, '博物馆分类', 2, 'com.xiaoniu.museum.controller.TbMuseumClassController.edit()', 'PUT', 1, 'admin', NULL, '/museumClass', '127.0.0.1', '', '{\"classColor\":\"#A3A5A7\",\"classImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414031328A020.jpg\",\"className\":\"民俗类\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:13:40\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"englishName\":\"Folklore\",\"museumClassId\":5,\"params\":{},\"sort\":4,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-15 21:19:20\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:19:20', 5);
INSERT INTO `sys_oper_log` VALUES (194, '博物馆分类', 2, 'com.xiaoniu.museum.controller.TbMuseumClassController.edit()', 'PUT', 1, 'admin', NULL, '/museumClass', '127.0.0.1', '', '{\"classColor\":\"#7C96AB\",\"classImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414031319A019.jpg\",\"className\":\"科学类\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:13:23\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"englishName\":\"Science\",\"museumClassId\":4,\"params\":{},\"sort\":3,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-15 21:19:29\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:19:29', 4);
INSERT INTO `sys_oper_log` VALUES (195, '博物馆分类', 2, 'com.xiaoniu.museum.controller.TbMuseumClassController.edit()', 'PUT', 1, 'admin', NULL, '/museumClass', '127.0.0.1', '', '{\"classColor\":\"#99AD98\",\"classImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414031301A018.jpg\",\"className\":\"综合类\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:13:06\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"englishName\":\"Comprehensive\",\"museumClassId\":3,\"params\":{},\"sort\":2,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-15 21:19:42\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:19:42', 5);
INSERT INTO `sys_oper_log` VALUES (196, '博物馆分类', 2, 'com.xiaoniu.museum.controller.TbMuseumClassController.edit()', 'PUT', 1, 'admin', NULL, '/museumClass', '127.0.0.1', '', '{\"classColor\":\"#A3A9C4\",\"classImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414031241A017.jpg\",\"className\":\"艺术类 \",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:12:44\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"englishName\":\"Artistic\",\"museumClassId\":2,\"params\":{},\"sort\":1,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-15 21:19:49\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:19:49', 4);
INSERT INTO `sys_oper_log` VALUES (197, '博物馆分类', 2, 'com.xiaoniu.museum.controller.TbMuseumClassController.edit()', 'PUT', 1, 'admin', NULL, '/museumClass', '127.0.0.1', '', '{\"classColor\":\"#A3A9C4\",\"classImage\":\"https://image.xnszz.com/2024/04/15/f055136dede90049e87c435de788192b_20240415211954A012.png\",\"className\":\"艺术类 \",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:12:44\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"englishName\":\"Artistic\",\"museumClassId\":2,\"params\":{},\"sort\":1,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-15 21:19:55\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:19:55', 9);
INSERT INTO `sys_oper_log` VALUES (198, '博物馆分类', 2, 'com.xiaoniu.museum.controller.TbMuseumClassController.edit()', 'PUT', 1, 'admin', NULL, '/museumClass', '127.0.0.1', '', '{\"classColor\":\"#99AD98\",\"classImage\":\"https://image.xnszz.com/2024/04/15/69e5b9cdb2020e3125d9e8aa58c1bc8e_20240415211959A013.png\",\"className\":\"综合类\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:13:06\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"englishName\":\"Comprehensive\",\"museumClassId\":3,\"params\":{},\"sort\":2,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-15 21:20:00\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:20:00', 4);
INSERT INTO `sys_oper_log` VALUES (199, '博物馆分类', 2, 'com.xiaoniu.museum.controller.TbMuseumClassController.edit()', 'PUT', 1, 'admin', NULL, '/museumClass', '127.0.0.1', '', '{\"classColor\":\"#7C96AB\",\"classImage\":\"https://image.xnszz.com/2024/04/15/7acf36b5cef0f7e0739aeddb3e8d0a05_20240415212004A014.png\",\"className\":\"科学类\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:13:23\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"englishName\":\"Science\",\"museumClassId\":4,\"params\":{},\"sort\":3,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-15 21:20:05\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:20:05', 10);
INSERT INTO `sys_oper_log` VALUES (200, '博物馆分类', 2, 'com.xiaoniu.museum.controller.TbMuseumClassController.edit()', 'PUT', 1, 'admin', NULL, '/museumClass', '127.0.0.1', '', '{\"classColor\":\"#A3A5A7\",\"classImage\":\"https://image.xnszz.com/2024/04/15/44d23664d376934e4122f4109baf3692_20240415212009A015.png\",\"className\":\"民俗类\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:13:40\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"englishName\":\"Folklore\",\"museumClassId\":5,\"params\":{},\"sort\":4,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-15 21:20:10\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:20:10', 5);
INSERT INTO `sys_oper_log` VALUES (201, '博物馆分类', 2, 'com.xiaoniu.museum.controller.TbMuseumClassController.edit()', 'PUT', 1, 'admin', NULL, '/museumClass', '127.0.0.1', '', '{\"classColor\":\"#A99880\",\"classImage\":\"https://image.xnszz.com/2024/04/15/a47b3e3c17f5865828d54aeb3c2da670_20240415212014A016.png\",\"className\":\"纪念类\",\"createBy\":\"admin\",\"createTime\":\"2024-04-14 03:14:00\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-14\",\"englishName\":\"Anniversary\",\"museumClassId\":6,\"params\":{},\"sort\":5,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-15 21:20:15\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:20:15', 12);
INSERT INTO `sys_oper_log` VALUES (202, '博物馆分类', 5, 'com.xiaoniu.museum.controller.TbMuseumClassController.export()', 'POST', 1, 'admin', NULL, '/museumClass/export', '127.0.0.1', '', '{\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2024-04-15 21:23:32', 778);
INSERT INTO `sys_oper_log` VALUES (203, '用户信息', 5, 'com.xiaoniu.museum.controller.TbMemberUserController.export()', 'POST', 1, 'admin', NULL, '/memberUser/export', '127.0.0.1', '', '{\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2024-04-15 21:23:35', 32);
INSERT INTO `sys_oper_log` VALUES (204, '节假日', 5, 'com.xiaoniu.museum.controller.TbHolidayController.export()', 'POST', 1, 'admin', NULL, '/holiday/export', '127.0.0.1', '', '{\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2024-04-15 21:23:39', 30);
INSERT INTO `sys_oper_log` VALUES (205, '博物馆信息', 6, 'com.xiaoniu.museum.controller.TbMuseumController.importData()', 'POST', 1, 'admin', NULL, '/museum/importData', '127.0.0.1', '', '', NULL, 1, '地址解析(地址转坐标)解析失败:此key每日调用量已达到上限', '2024-04-15 21:31:14', 901);
INSERT INTO `sys_oper_log` VALUES (206, '博物馆信息', 6, 'com.xiaoniu.museum.controller.TbMuseumController.importData()', 'POST', 1, 'admin', NULL, '/museum/importData', '127.0.0.1', '', '', '{\"msg\":\"导入成功\",\"code\":200}', 0, NULL, '2024-04-15 21:32:49', 15013);
INSERT INTO `sys_oper_log` VALUES (207, '博物馆信息', 2, 'com.xiaoniu.museum.controller.TbMuseumController.edit()', 'PUT', 1, 'admin', NULL, '/museum', '127.0.0.1', '', '{\"address\":\"河北省邯郸市人民路399号\",\"audienceAmount\":136657,\"cityName\":\"邯郸市\",\"collectionAmount\":9927,\"createBy\":\"admin\",\"createTime\":\"2024-04-14 17:16:24\",\"crowdDegree\":\"拥挤\",\"delFlag\":0,\"latitude\":\"36.609904\",\"longitude\":\"114.523593\",\"mechanismName\":\"文物系统国有博物馆\",\"museumBanner\":\"https://image.xnszz.com/2024/04/14/6e32ee4eb07c2a9a9f3a4aef946756a1_20240414171530A002.png,https://image.xnszz.com/2024/04/14/d59a920bf37d92bf729331f24bb4907e_20240414171535A003.jpg\",\"museumClassId\":1,\"museumGrade\":\"一级\",\"museumId\":1,\"museumImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414171524A001.jpg\",\"museumIntroduce\":\"
qweqwewqe
dq qd d
\",\"museumName\":\"邯郸市博物馆\",\"museumPhone\":\"18595927131\",\"museumScore\":4.8,\"openingEnd\":\"19:00\",\"openingStart\":\"08:00\",\"openingWeek\":\"周三,周四,周五,周日,周六\",\"params\":{},\"preciousCollectionAmount\":252,\"provinceName\":\"河北省\",\"remainTicket\":333,\"reservationLink\":\"https://www.baidu.com\",\"reservationsNumber\":3566,\"serialNumber\":0,\"showAmount\":5,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-15 21:34:25\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:34:25', 159);
INSERT INTO `sys_oper_log` VALUES (208, '博物馆信息', 2, 'com.xiaoniu.museum.controller.TbMuseumController.edit()', 'PUT', 1, 'admin', NULL, '/museum', '127.0.0.1', '', '{\"address\":\"河北省邯郸市人民路399号\",\"audienceAmount\":136657,\"cityName\":\"邯郸市\",\"collectionAmount\":9927,\"createBy\":\"admin\",\"createTime\":\"2024-04-14 17:16:24\",\"crowdDegree\":\"拥挤\",\"delFlag\":0,\"latitude\":\"36.609904\",\"longitude\":\"114.523593\",\"mechanismName\":\"文物系统国有博物馆\",\"museumBanner\":\"https://image.xnszz.com/2024/04/14/6e32ee4eb07c2a9a9f3a4aef946756a1_20240414171530A002.png,https://image.xnszz.com/2024/04/14/d59a920bf37d92bf729331f24bb4907e_20240414171535A003.jpg\",\"museumClassId\":1,\"museumGrade\":\"一级\",\"museumId\":1,\"museumImage\":\"https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414171524A001.jpg\",\"museumIntroduce\":\"
qweqwewqe
dq qd d
\",\"museumName\":\"邯郸市博物馆\",\"museumPhone\":\"18595927131\",\"museumScore\":4.8,\"openingEnd\":\"19:00\",\"openingStart\":\"08:00\",\"openingWeek\":\"周三,周四,周五,周日,周六\",\"params\":{},\"preciousCollectionAmount\":252,\"provinceName\":\"河北省\",\"remainTicket\":333,\"reservationLink\":\"https://www.baidu.com\",\"reservationsNumber\":3566,\"serialNumber\":0,\"showAmount\":5,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-15 21:39:11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:39:11', 136);
INSERT INTO `sys_oper_log` VALUES (209, '博物馆信息', 5, 'com.xiaoniu.museum.controller.TbMuseumController.export()', 'POST', 1, 'admin', NULL, '/museum/export', '127.0.0.1', '', '{\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2024-04-15 21:39:46', 384);
INSERT INTO `sys_oper_log` VALUES (210, '博物馆信息', 6, 'com.xiaoniu.museum.controller.TbMuseumController.importData()', 'POST', 1, 'admin', NULL, '/museum/importData', '127.0.0.1', '', '', '{\"msg\":\"导入成功\",\"code\":200}', 0, NULL, '2024-04-15 21:45:13', 13829);
INSERT INTO `sys_oper_log` VALUES (211, '博物馆信息', 3, 'com.xiaoniu.museum.controller.TbMuseumController.remove()', 'DELETE', 1, 'admin', NULL, '/museum/1226', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:45:18', 7);
INSERT INTO `sys_oper_log` VALUES (212, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"museum/museumClass/index\",\"createTime\":\"2024-04-14 03:05:21\",\"icon\":\"#\",\"isCache\":\"1\",\"isFrame\":\"1\",\"menuId\":2037,\"menuName\":\"博物馆分类\",\"menuType\":\"C\",\"orderNum\":0,\"params\":{},\"parentId\":2000,\"path\":\"museumClass\",\"perms\":\"museum:museumClass:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:46:34', 41);
INSERT INTO `sys_oper_log` VALUES (213, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"museum/museum/index\",\"createTime\":\"2024-04-14 16:04:25\",\"icon\":\"#\",\"isCache\":\"1\",\"isFrame\":\"1\",\"menuId\":2043,\"menuName\":\"博物馆信息\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2000,\"path\":\"museum\",\"perms\":\"museum:museum:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:46:36', 10);
INSERT INTO `sys_oper_log` VALUES (214, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"museum/museumMechanism/index\",\"createTime\":\"2024-04-14 21:32:36\",\"icon\":\"#\",\"isCache\":\"1\",\"isFrame\":\"1\",\"menuId\":2049,\"menuName\":\"博物馆机构\",\"menuType\":\"C\",\"orderNum\":2,\"params\":{},\"parentId\":2000,\"path\":\"museumMechanism\",\"perms\":\"museum:museumMechanism:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:46:39', 10);
INSERT INTO `sys_oper_log` VALUES (215, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"museum/holidayPassenger/index\",\"createTime\":\"2024-04-14 22:00:09\",\"icon\":\"#\",\"isCache\":\"1\",\"isFrame\":\"1\",\"menuId\":2055,\"menuName\":\"节假日客流\",\"menuType\":\"C\",\"orderNum\":3,\"params\":{},\"parentId\":2000,\"path\":\"holidayPassenger\",\"perms\":\"museum:holidayPassenger:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:46:41', 9);
INSERT INTO `sys_oper_log` VALUES (216, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"museum/holiday/index\",\"createTime\":\"2024-04-14 22:00:14\",\"icon\":\"#\",\"isCache\":\"1\",\"isFrame\":\"1\",\"menuId\":2061,\"menuName\":\"节假日\",\"menuType\":\"C\",\"orderNum\":4,\"params\":{},\"parentId\":2000,\"path\":\"holiday\",\"perms\":\"museum:holiday:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:46:43', 6);
INSERT INTO `sys_oper_log` VALUES (217, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"museum/memberUser/index\",\"createTime\":\"2024-04-13 22:53:07\",\"icon\":\"#\",\"isCache\":\"1\",\"isFrame\":\"1\",\"menuId\":2019,\"menuName\":\"用户信息\",\"menuType\":\"C\",\"orderNum\":0,\"params\":{},\"parentId\":2068,\"path\":\"memberUser\",\"perms\":\"museum:memberUser:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:46:47', 6);
INSERT INTO `sys_oper_log` VALUES (218, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"museum/feedback/index\",\"createTime\":\"2024-04-14 02:13:17\",\"icon\":\"#\",\"isCache\":\"1\",\"isFrame\":\"1\",\"menuId\":2031,\"menuName\":\"用户投诉\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2068,\"path\":\"feedback\",\"perms\":\"museum:feedback:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:46:49', 16);
INSERT INTO `sys_oper_log` VALUES (219, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"museum/accessLog/index\",\"createTime\":\"2024-04-14 23:52:00\",\"icon\":\"#\",\"isCache\":\"1\",\"isFrame\":\"1\",\"menuId\":2069,\"menuName\":\"用户访问日志\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2068,\"path\":\"accessLog\",\"perms\":\"museum:accessLog:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:46:51', 5);
INSERT INTO `sys_oper_log` VALUES (220, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"museum/rule/index\",\"createTime\":\"2024-04-14 01:44:18\",\"icon\":\"#\",\"isCache\":\"1\",\"isFrame\":\"1\",\"menuId\":2025,\"menuName\":\"平台规则\",\"menuType\":\"C\",\"orderNum\":4,\"params\":{},\"parentId\":2067,\"path\":\"rule\",\"perms\":\"museum:rule:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-15 21:47:03', 11);
INSERT INTO `sys_oper_log` VALUES (221, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '171.8.60.169', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2024-04-12 15:37:35\",\"icon\":\"nacos\",\"isCache\":\"0\",\"isFrame\":\"0\",\"menuId\":112,\"menuName\":\"Nacos控制台\",\"menuType\":\"C\",\"orderNum\":4,\"params\":{},\"parentId\":2,\"path\":\"http://122.51.150.70:8848/nacos\",\"perms\":\"monitor:nacos:list\",\"query\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-16 21:13:57', 44);
INSERT INTO `sys_oper_log` VALUES (222, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '171.8.60.169', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2024-04-14 04:48:53\",\"icon\":\"server\",\"isCache\":\"0\",\"isFrame\":\"0\",\"menuId\":113,\"menuName\":\"Admin控制台\",\"menuType\":\"C\",\"orderNum\":5,\"params\":{},\"parentId\":2,\"path\":\"http://122.51.150.70:9100/login\",\"perms\":\"monitor:server:list\",\"query\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-16 21:14:01', 17);
INSERT INTO `sys_oper_log` VALUES (223, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '171.8.60.169', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2024-04-12 15:37:35\",\"icon\":\"sentinel\",\"isCache\":\"0\",\"isFrame\":\"0\",\"menuId\":111,\"menuName\":\"Sentinel控制台\",\"menuType\":\"C\",\"orderNum\":3,\"params\":{},\"parentId\":2,\"path\":\"http://122.51.150.70:8718\",\"perms\":\"monitor:sentinel:list\",\"query\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-16 21:14:08', 14);
INSERT INTO `sys_oper_log` VALUES (224, '用户头像', 2, 'com.xiaoniu.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '171.8.60.169', '', '', '{\"msg\":\"操作成功\",\"imgUrl\":\"https://image.xnszz.com/2024/04/16/ce9d27f3035f5cdd576e0f5d37aa3f26_20240416215319A002.png\",\"code\":200}', 0, NULL, '2024-04-16 21:53:20', 953);
INSERT INTO `sys_oper_log` VALUES (225, '博物馆信息', 2, 'com.xiaoniu.museum.controller.TbMuseumController.edit()', 'PUT', 1, 'admin', NULL, '/museum', '171.8.60.169', '', '{\"address\":\"河南省郑州市中原区文翰街9号\",\"audienceAmount\":602852,\"cityName\":\"郑州市\",\"collectionAmount\":53656,\"createBy\":\"admin: import\",\"createTime\":\"2024-04-15 21:45:11\",\"crowdDegree\":\"拥挤\",\"delFlag\":0,\"latitude\":\"34.740593\",\"longitude\":\"113.555755\",\"mechanismName\":\"文物系统国有博物馆\",\"museumBanner\":\"https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png\",\"museumClassId\":5,\"museumGrade\":\"一级\",\"museumId\":1391,\"museumImage\":\"https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png\",\"museumIntroduce\":\"
\",\"museumName\":\"郑州博物馆\",\"museumPhone\":\"18888888888\",\"museumScore\":4.6,\"openingEnd\":\"19:00\",\"openingStart\":\"08:00\",\"openingWeek\":\"周三,周四,周五,周六,周日\",\"params\":{},\"preciousCollectionAmount\":9396,\"provinceName\":\"河南省\",\"remainTicket\":672,\"reservationLink\":\"#小程序://故宫博物院/NjNEVFK9Cay23Nj\",\"reservationsNumber\":4890,\"serialNumber\":166,\"showAmount\":4,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-16 22:06:35\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-16 22:06:35', 583);
INSERT INTO `sys_oper_log` VALUES (226, '博物馆信息', 2, 'com.xiaoniu.museum.controller.TbMuseumController.edit()', 'PUT', 1, 'admin', NULL, '/museum', '171.8.60.169', '', '{\"address\":\"河南省郑州市金水区农业路8号\",\"audienceAmount\":640000,\"cityName\":\"郑州市\",\"collectionAmount\":178283,\"createBy\":\"admin: import\",\"createTime\":\"2024-04-15 21:45:03\",\"crowdDegree\":\"拥挤\",\"delFlag\":0,\"latitude\":\"34.78844\",\"longitude\":\"113.67224\",\"mechanismName\":\"文物系统国有博物馆\",\"museumBanner\":\"https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png\",\"museumClassId\":4,\"museumGrade\":\"一级\",\"museumId\":1266,\"museumImage\":\"https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png\",\"museumIntroduce\":\"11
\",\"museumName\":\"河南博物院\",\"museumPhone\":\"18888888888\",\"museumScore\":4.3,\"openingEnd\":\"19:00\",\"openingStart\":\"08:00\",\"openingWeek\":\"周三,周四,周五,周二,周日,周六\",\"params\":{},\"preciousCollectionAmount\":53431,\"provinceName\":\"河南省\",\"remainTicket\":510,\"reservationsNumber\":4121,\"serialNumber\":41,\"showAmount\":6,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-16 22:19:18\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-16 22:19:18', 510);
INSERT INTO `sys_oper_log` VALUES (227, '博物馆信息', 2, 'com.xiaoniu.museum.controller.TbMuseumController.edit()', 'PUT', 1, 'admin', NULL, '/museum', '171.8.60.169', '', '{\"address\":\"河南省郑州市中原区文翰街9号\",\"audienceAmount\":602852,\"cityName\":\"郑州市\",\"collectionAmount\":53656,\"createBy\":\"admin: import\",\"createTime\":\"2024-04-15 21:45:11\",\"crowdDegree\":\"拥挤\",\"delFlag\":0,\"latitude\":\"34.740593\",\"longitude\":\"113.555755\",\"mechanismName\":\"文物系统国有博物馆\",\"museumBanner\":\"https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png\",\"museumClassId\":5,\"museumGrade\":\"一级\",\"museumId\":1391,\"museumImage\":\"https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png\",\"museumIntroduce\":\"
\",\"museumName\":\"郑州博物馆\",\"museumPhone\":\"18888888888\",\"museumScore\":4.6,\"openingEnd\":\"19:00\",\"openingStart\":\"08:00\",\"openingWeek\":\"周三,周四,周五,周六,周日\",\"params\":{},\"preciousCollectionAmount\":9396,\"provinceName\":\"河南省\",\"remainTicket\":672,\"reservationLink\":\"https://yyrk.hnzzmuseum.net/#/ticket/pages/index/index\",\"reservationsNumber\":4890,\"serialNumber\":166,\"showAmount\":4,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-16 22:23:36\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-16 22:23:36', 142);
INSERT INTO `sys_oper_log` VALUES (228, '博物馆信息', 2, 'com.xiaoniu.museum.controller.TbMuseumController.edit()', 'PUT', 1, 'admin', NULL, '/museum', '171.8.60.169', '', '{\"address\":\"北京市东城区景山前街4号\",\"audienceAmount\":3269164,\"cityName\":\"北京市\",\"collectionAmount\":1917657,\"createBy\":\"admin: import\",\"createTime\":\"2024-04-15 21:45:06\",\"crowdDegree\":\"舒适\",\"delFlag\":0,\"latitude\":\"39.921234\",\"longitude\":\"116.398643\",\"mechanismName\":\"文物系统国有博物馆\",\"museumBanner\":\"https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png\",\"museumClassId\":6,\"museumGrade\":\"一级\",\"museumId\":1307,\"museumImage\":\"https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png\",\"museumIntroduce\":\"
\",\"museumName\":\"故宫博物院\",\"museumPhone\":\"18888888888\",\"museumScore\":4.1,\"openingEnd\":\"19:00\",\"openingStart\":\"08:00\",\"openingWeek\":\"周三,周四,周五,周六,周日\",\"params\":{},\"preciousCollectionAmount\":927745,\"provinceName\":\"北京市\",\"remainTicket\":705,\"reservationLink\":\"#小程序://故宫博物院/NjNEVFK9Cay23Nj\",\"reservationsNumber\":3201,\"serialNumber\":82,\"showAmount\":11,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-16 22:23:55\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-16 22:23:55', 101);
INSERT INTO `sys_oper_log` VALUES (229, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '171.8.60.169', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2024-04-12 15:37:35\",\"icon\":\"nacos\",\"isCache\":\"0\",\"isFrame\":\"0\",\"menuId\":112,\"menuName\":\"Nacos控制台\",\"menuType\":\"C\",\"orderNum\":4,\"params\":{},\"parentId\":2,\"path\":\"http://museumserver.snszz.com/nacos\",\"perms\":\"monitor:nacos:list\",\"query\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 09:54:18', 43);
INSERT INTO `sys_oper_log` VALUES (230, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '171.8.60.169', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2024-04-12 15:37:35\",\"icon\":\"nacos\",\"isCache\":\"0\",\"isFrame\":\"0\",\"menuId\":112,\"menuName\":\"Nacos控制台\",\"menuType\":\"C\",\"orderNum\":4,\"params\":{},\"parentId\":2,\"path\":\"http://museumserver.xnszz.com/nacos\",\"perms\":\"monitor:nacos:list\",\"query\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 09:54:38', 11);
INSERT INTO `sys_oper_log` VALUES (231, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '171.8.60.169', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2024-04-12 15:37:35\",\"icon\":\"nacos\",\"isCache\":\"0\",\"isFrame\":\"0\",\"menuId\":112,\"menuName\":\"Nacos控制台\",\"menuType\":\"C\",\"orderNum\":4,\"params\":{},\"parentId\":2,\"path\":\"https://museumserver.xnszz.com/nacos\",\"perms\":\"monitor:nacos:list\",\"query\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 09:54:48', 12);
INSERT INTO `sys_oper_log` VALUES (232, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '171.8.60.169', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2024-04-14 04:48:53\",\"icon\":\"server\",\"isCache\":\"0\",\"isFrame\":\"0\",\"menuId\":113,\"menuName\":\"Admin控制台\",\"menuType\":\"C\",\"orderNum\":5,\"params\":{},\"parentId\":2,\"path\":\"https://museumserver.xnszz.com/admin/login\",\"perms\":\"monitor:server:list\",\"query\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 09:55:09', 13);
INSERT INTO `sys_oper_log` VALUES (233, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '171.8.60.169', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2024-04-12 15:37:35\",\"icon\":\"sentinel\",\"isCache\":\"0\",\"isFrame\":\"0\",\"menuId\":111,\"menuName\":\"Sentinel控制台\",\"menuType\":\"C\",\"orderNum\":3,\"params\":{},\"parentId\":2,\"path\":\"https://museumserver.xnszz.com/admin/sentinel\",\"perms\":\"monitor:sentinel:list\",\"query\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 09:55:17', 11);
INSERT INTO `sys_oper_log` VALUES (234, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '171.8.60.169', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2024-04-12 15:37:35\",\"icon\":\"sentinel\",\"isCache\":\"0\",\"isFrame\":\"0\",\"menuId\":111,\"menuName\":\"Sentinel控制台\",\"menuType\":\"C\",\"orderNum\":3,\"params\":{},\"parentId\":2,\"path\":\"https://museumserver.xnszz.com/admin/sentinel\",\"perms\":\"monitor:sentinel:list\",\"query\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 09:57:40', 12);
INSERT INTO `sys_oper_log` VALUES (235, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '171.8.60.169', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2024-04-12 15:37:35\",\"icon\":\"sentinel\",\"isCache\":\"0\",\"isFrame\":\"0\",\"menuId\":111,\"menuName\":\"Sentinel控制台\",\"menuType\":\"C\",\"orderNum\":3,\"params\":{},\"parentId\":2,\"path\":\"https://museumserver.xnszz.com/admin/sentinel\",\"perms\":\"monitor:sentinel:list\",\"query\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 09:58:16', 12);
INSERT INTO `sys_oper_log` VALUES (236, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '171.8.60.169', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2024-04-12 15:37:35\",\"icon\":\"nacos\",\"isCache\":\"0\",\"isFrame\":\"0\",\"menuId\":112,\"menuName\":\"Nacos控制台\",\"menuType\":\"C\",\"orderNum\":4,\"params\":{},\"parentId\":2,\"path\":\"http://122.51.150.70:8848/nacos\",\"perms\":\"monitor:nacos:list\",\"query\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 09:59:15', 10);
INSERT INTO `sys_oper_log` VALUES (237, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '171.8.60.169', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2024-04-12 15:37:35\",\"icon\":\"sentinel\",\"isCache\":\"0\",\"isFrame\":\"0\",\"menuId\":111,\"menuName\":\"Sentinel控制台\",\"menuType\":\"C\",\"orderNum\":3,\"params\":{},\"parentId\":2,\"path\":\"http://122.51.150.70:8718/\",\"perms\":\"monitor:sentinel:list\",\"query\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 09:59:52', 10);
INSERT INTO `sys_oper_log` VALUES (238, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '171.8.60.169', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2024-04-14 04:48:53\",\"icon\":\"server\",\"isCache\":\"0\",\"isFrame\":\"0\",\"menuId\":113,\"menuName\":\"Admin控制台\",\"menuType\":\"C\",\"orderNum\":5,\"params\":{},\"parentId\":2,\"path\":\"http://122.51.150.70:9100\",\"perms\":\"monitor:server:list\",\"query\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 10:00:01', 10);
INSERT INTO `sys_oper_log` VALUES (239, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '171.8.60.190', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2024-04-12 15:37:35\",\"icon\":\"nacos\",\"isCache\":\"0\",\"isFrame\":\"0\",\"menuId\":112,\"menuName\":\"Nacos控制台\",\"menuType\":\"C\",\"orderNum\":4,\"params\":{},\"parentId\":2,\"path\":\"https://museumserver.xnszz.com/nacos\",\"perms\":\"monitor:nacos:list\",\"query\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 13:52:35', 15);
INSERT INTO `sys_oper_log` VALUES (240, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '171.8.60.190', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2024-04-12 15:37:35\",\"icon\":\"sentinel\",\"isCache\":\"1\",\"isFrame\":\"0\",\"menuId\":111,\"menuName\":\"Sentinel控制台\",\"menuType\":\"C\",\"orderNum\":3,\"params\":{},\"parentId\":2,\"path\":\"http://122.51.150.70:8718/\",\"perms\":\"monitor:sentinel:list\",\"query\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 13:53:22', 8);
INSERT INTO `sys_oper_log` VALUES (241, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '171.8.60.190', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2024-04-14 04:48:53\",\"icon\":\"server\",\"isCache\":\"1\",\"isFrame\":\"0\",\"menuId\":113,\"menuName\":\"Admin控制台\",\"menuType\":\"C\",\"orderNum\":5,\"params\":{},\"parentId\":2,\"path\":\"http://122.51.150.70:9100\",\"perms\":\"monitor:server:list\",\"query\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 13:53:26', 9);
INSERT INTO `sys_oper_log` VALUES (242, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '171.8.60.190', '', '{\"children\":[],\"component\":\"tool/gen/index\",\"createTime\":\"2024-04-12 15:37:35\",\"icon\":\"code\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":115,\"menuName\":\"代码生成\",\"menuType\":\"C\",\"orderNum\":2,\"params\":{},\"parentId\":3,\"path\":\"gen\",\"perms\":\"tool:gen:list\",\"query\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 13:53:41', 10);
INSERT INTO `sys_oper_log` VALUES (243, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '171.8.60.190', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2024-04-14 04:48:53\",\"icon\":\"server\",\"isCache\":\"1\",\"isFrame\":\"0\",\"menuId\":113,\"menuName\":\"Admin控制台\",\"menuType\":\"C\",\"orderNum\":5,\"params\":{},\"parentId\":2,\"path\":\"http://122.51.150.70:9100\",\"perms\":\"monitor:server:list\",\"query\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 13:53:46', 9);
INSERT INTO `sys_oper_log` VALUES (244, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '171.8.60.190', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2024-04-14 04:48:53\",\"icon\":\"server\",\"isCache\":\"1\",\"isFrame\":\"0\",\"menuId\":113,\"menuName\":\"Admin控制台\",\"menuType\":\"C\",\"orderNum\":5,\"params\":{},\"parentId\":2,\"path\":\"http://122.51.150.70:9100\",\"perms\":\"monitor:server:list\",\"query\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 13:53:51', 11);
INSERT INTO `sys_oper_log` VALUES (245, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '171.8.60.190', '', '{\"children\":[],\"component\":\"tool/gen/index\",\"createTime\":\"2024-04-12 15:37:35\",\"icon\":\"code\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":115,\"menuName\":\"代码生成\",\"menuType\":\"C\",\"orderNum\":2,\"params\":{},\"parentId\":3,\"path\":\"gen\",\"perms\":\"tool:gen:list\",\"query\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 13:53:56', 20);
INSERT INTO `sys_oper_log` VALUES (246, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '171.8.60.190', '', '{\"children\":[],\"component\":\"tool/gen/index\",\"createTime\":\"2024-04-12 15:37:35\",\"icon\":\"code\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":115,\"menuName\":\"代码生成\",\"menuType\":\"C\",\"orderNum\":2,\"params\":{},\"parentId\":3,\"path\":\"gen\",\"perms\":\"tool:gen:list\",\"query\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 13:54:04', 11);
INSERT INTO `sys_oper_log` VALUES (247, '菜单管理', 2, 'com.xiaoniu.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '171.8.60.190', '', '{\"children\":[],\"createTime\":\"2024-04-12 15:37:35\",\"icon\":\"tool\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":3,\"menuName\":\"系统工具\",\"menuType\":\"M\",\"orderNum\":99,\"params\":{},\"parentId\":0,\"path\":\"tool\",\"perms\":\"\",\"query\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 13:54:07', 11);
INSERT INTO `sys_oper_log` VALUES (248, '轮播图管理', 2, 'com.xiaoniu.museum.controller.TbBannerController.edit()', 'PUT', 1, 'admin', NULL, '/banner', '171.8.60.190', '', '{\"bannerId\":1,\"bannerJump\":0,\"bannerTitle\":\"海底世界(广东省博物馆)\",\"bannerUrl\":\"https://image.xnszz.com/2024/04/17/d925cd4de5d500637f0096080bfbe980_20240417140200A005.png\",\"createBy\":\"admin\",\"createTime\":\"2024-04-13 11:20:35\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-13\",\"params\":{},\"sort\":1,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-17 14:02:01\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 14:02:01', 36);
INSERT INTO `sys_oper_log` VALUES (249, '轮播图管理', 2, 'com.xiaoniu.museum.controller.TbBannerController.edit()', 'PUT', 1, 'admin', NULL, '/banner', '171.8.60.190', '', '{\"bannerId\":1,\"bannerJump\":0,\"bannerTitle\":\"海底世界(广东省博物馆)\",\"bannerUrl\":\"https://image.xnszz.com/2024/04/17/27be4883ac4e0ce663684f8b75005ea9_20240417140620A006.jpg\",\"createBy\":\"admin\",\"createTime\":\"2024-04-13 11:20:35\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-13\",\"params\":{},\"sort\":1,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-17 14:06:22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 14:06:22', 8);
INSERT INTO `sys_oper_log` VALUES (250, '轮播图管理', 2, 'com.xiaoniu.museum.controller.TbBannerController.edit()', 'PUT', 1, 'admin', NULL, '/banner', '171.8.60.190', '', '{\"bannerId\":3,\"bannerJump\":0,\"bannerTitle\":\"璀璨波斯(故宫博物馆)\",\"bannerUrl\":\"https://image.xnszz.com/2024/04/17/75a85fb5832ba25bbbc9368eab3f0efb_20240417140634A007.jpg\",\"createBy\":\"admin\",\"createTime\":\"2024-04-13 12:08:06\",\"delFlag\":0,\"params\":{},\"sort\":2,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-17 14:06:39\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 14:06:39', 8);
INSERT INTO `sys_oper_log` VALUES (251, '轮播图管理', 2, 'com.xiaoniu.museum.controller.TbBannerController.edit()', 'PUT', 1, 'admin', NULL, '/banner', '171.8.60.190', '', '{\"bannerId\":2,\"bannerJump\":0,\"bannerTitle\":\"重走丝绸路(南京博物馆)\",\"bannerUrl\":\"https://image.xnszz.com/2024/04/17/d925cd4de5d500637f0096080bfbe980_20240417140653A008.png\",\"createBy\":\"admin\",\"createTime\":\"2024-04-13 11:57:48\",\"delFlag\":0,\"params\":{},\"sort\":3,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-17 14:06:54\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 14:06:54', 7);
INSERT INTO `sys_oper_log` VALUES (252, '轮播图管理', 2, 'com.xiaoniu.museum.controller.TbBannerController.edit()', 'PUT', 1, 'admin', NULL, '/banner', '171.8.60.190', '', '{\"bannerId\":2,\"bannerJump\":0,\"bannerTitle\":\"重走丝绸路(南京博物馆)\",\"bannerUrl\":\"https://image.xnszz.com/2024/04/17/defd349a3ba362607308d38fdb6e0c52_20240417140748A009.jpg\",\"createBy\":\"admin\",\"createTime\":\"2024-04-13 11:57:48\",\"delFlag\":0,\"params\":{},\"sort\":3,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-17 14:07:50\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 14:07:50', 8);
INSERT INTO `sys_oper_log` VALUES (253, '最新资讯', 2, 'com.xiaoniu.museum.controller.TbInformationController.edit()', 'PUT', 1, 'admin', NULL, '/information', '171.8.60.190', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-13 14:21:21\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-13\",\"informationContent\":\"wwww
\",\"informationId\":1,\"informationImage\":\"https://image.xnszz.com/2024/04/17/27be4883ac4e0ce663684f8b75005ea9_20240417140856A010.jpg\",\"informationIntro\":\"中华文明,是人类历史上唯一未曾中断的原生文明,具有强大的凝聚力.\",\"informationTitle\":\"何以中国\",\"museumId\":1,\"params\":{},\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-17 14:08:59\",\"viewCount\":7}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 14:08:59', 18);
INSERT INTO `sys_oper_log` VALUES (254, '活动公告', 2, 'com.xiaoniu.museum.controller.TbNoticeController.edit()', 'PUT', 1, 'admin', NULL, '/notice', '171.8.60.190', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-13 14:34:22\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-13\",\"museumId\":1,\"noticeContent\":\"
\",\"noticeId\":2,\"noticeImage\":\"https://image.xnszz.com/2024/04/17/1e91d4d5453afb319b56d762de2a7d3e_20240417141202A011.jpg\",\"noticeTitle\":\"燃爆五一!近200项文化盛宴等 你来!\",\"params\":{},\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-17 14:12:05\",\"viewCount\":5}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 14:12:05', 17);
INSERT INTO `sys_oper_log` VALUES (255, '活动公告', 2, 'com.xiaoniu.museum.controller.TbNoticeController.edit()', 'PUT', 1, 'admin', NULL, '/notice', '171.8.60.190', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-13 14:34:03\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-13\",\"museumId\":1,\"noticeContent\":\"wfwf
\",\"noticeId\":1,\"noticeImage\":\"https://image.xnszz.com/2024/04/17/a0afdc4474ac2438fb57452160d77ef9_20240417141213A012.jpg\",\"noticeTitle\":\"注意查收|来自\\\"文物鉴赏家\\\" 的邀请函\",\"params\":{},\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-17 14:12:15\",\"viewCount\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 14:12:15', 7);
INSERT INTO `sys_oper_log` VALUES (256, '最新资讯', 2, 'com.xiaoniu.museum.controller.TbInformationController.edit()', 'PUT', 1, 'admin', NULL, '/information', '171.8.60.190', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-13 14:21:21\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-13\",\"informationContent\":\"wwww
\",\"informationId\":1,\"informationImage\":\"https://image.xnszz.com/2024/04/17/2d846461f47ce1a119208bee8cbfe360_20240417141241A013.jpg\",\"informationIntro\":\"中华文明,是人类历史上唯一未曾中断的原生文明,具有强大的凝聚力.\",\"informationTitle\":\"何以中国\",\"museumId\":1,\"params\":{},\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-17 14:12:44\",\"viewCount\":7}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 14:12:44', 11);
INSERT INTO `sys_oper_log` VALUES (257, '最新资讯', 2, 'com.xiaoniu.museum.controller.TbInformationController.edit()', 'PUT', 1, 'admin', NULL, '/information', '171.8.60.190', '', '{\"createBy\":\"admin\",\"createTime\":\"2024-04-13 14:27:54\",\"delFlag\":0,\"deleteBy\":\"admin\",\"deleteTime\":\"2024-04-13\",\"informationContent\":\"
\",\"informationId\":3,\"informationImage\":\"https://image.xnszz.com/2024/04/17/1e91d4d5453afb319b56d762de2a7d3e_20240417141259A014.jpg\",\"informationIntro\":\"这里有着6项世界级、36项国家级非物质文化遗产项目\",\"informationTitle\":\"咔擦咔擦!跟着“双遗“游西安!\",\"museumId\":2,\"params\":{},\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-04-17 14:13:03\",\"viewCount\":4}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-04-17 14:13:03', 7);
-- ----------------------------
-- Table structure for sys_post
-- ----------------------------
DROP TABLE IF EXISTS `sys_post`;
CREATE TABLE `sys_post` (
`post_id` bigint NOT NULL AUTO_INCREMENT COMMENT '岗位ID',
`post_code` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '岗位编码',
`post_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '岗位名称',
`post_sort` int NOT NULL COMMENT '显示顺序',
`status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '状态(0正常 1停用)',
`create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '创建者',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '更新者',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`post_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 5 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '岗位信息表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of sys_post
-- ----------------------------
INSERT INTO `sys_post` VALUES (1, 'ceo', '董事长', 1, '0', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_post` VALUES (2, 'se', '项目经理', 2, '0', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_post` VALUES (3, 'hr', '人力资源', 3, '0', 'admin', '2024-04-12 15:37:35', '', NULL, '');
INSERT INTO `sys_post` VALUES (4, 'user', '普通员工', 4, '0', 'admin', '2024-04-12 15:37:35', '', NULL, '');
-- ----------------------------
-- Table structure for sys_role
-- ----------------------------
DROP TABLE IF EXISTS `sys_role`;
CREATE TABLE `sys_role` (
`role_id` bigint NOT NULL AUTO_INCREMENT COMMENT '角色ID',
`role_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '角色名称',
`role_key` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '角色权限字符串',
`role_sort` int NOT NULL COMMENT '显示顺序',
`data_scope` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '1' COMMENT '数据范围(1:全部数据权限 2:自定数据权限 3:本部门数据权限 4:本部门及以下数据权限)',
`menu_check_strictly` tinyint(1) NULL DEFAULT 1 COMMENT '菜单树选择项是否关联显示',
`dept_check_strictly` tinyint(1) NULL DEFAULT 1 COMMENT '部门树选择项是否关联显示',
`status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '角色状态(0正常 1停用)',
`del_flag` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
`create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '创建者',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '更新者',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`role_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 100 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '角色信息表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of sys_role
-- ----------------------------
INSERT INTO `sys_role` VALUES (1, '超级管理员', 'admin', 1, '1', 1, 1, '0', '0', 'admin', '2024-04-12 15:37:35', '', NULL, '超级管理员');
INSERT INTO `sys_role` VALUES (2, '普通角色', 'common', 2, '2', 1, 1, '0', '0', 'admin', '2024-04-12 15:37:35', 'admin', '2024-04-14 23:28:16', '普通角色');
-- ----------------------------
-- Table structure for sys_role_dept
-- ----------------------------
DROP TABLE IF EXISTS `sys_role_dept`;
CREATE TABLE `sys_role_dept` (
`role_id` bigint NOT NULL COMMENT '角色ID',
`dept_id` bigint NOT NULL COMMENT '部门ID',
PRIMARY KEY (`role_id`, `dept_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '角色和部门关联表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of sys_role_dept
-- ----------------------------
INSERT INTO `sys_role_dept` VALUES (2, 100);
INSERT INTO `sys_role_dept` VALUES (2, 101);
INSERT INTO `sys_role_dept` VALUES (2, 105);
-- ----------------------------
-- Table structure for sys_role_menu
-- ----------------------------
DROP TABLE IF EXISTS `sys_role_menu`;
CREATE TABLE `sys_role_menu` (
`role_id` bigint NOT NULL COMMENT '角色ID',
`menu_id` bigint NOT NULL COMMENT '菜单ID',
PRIMARY KEY (`role_id`, `menu_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '角色和菜单关联表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of sys_role_menu
-- ----------------------------
INSERT INTO `sys_role_menu` VALUES (2, 2000);
INSERT INTO `sys_role_menu` VALUES (2, 2019);
INSERT INTO `sys_role_menu` VALUES (2, 2020);
INSERT INTO `sys_role_menu` VALUES (2, 2021);
INSERT INTO `sys_role_menu` VALUES (2, 2023);
INSERT INTO `sys_role_menu` VALUES (2, 2024);
INSERT INTO `sys_role_menu` VALUES (2, 2031);
INSERT INTO `sys_role_menu` VALUES (2, 2032);
INSERT INTO `sys_role_menu` VALUES (2, 2033);
INSERT INTO `sys_role_menu` VALUES (2, 2034);
INSERT INTO `sys_role_menu` VALUES (2, 2035);
INSERT INTO `sys_role_menu` VALUES (2, 2036);
INSERT INTO `sys_role_menu` VALUES (2, 2037);
INSERT INTO `sys_role_menu` VALUES (2, 2038);
INSERT INTO `sys_role_menu` VALUES (2, 2039);
INSERT INTO `sys_role_menu` VALUES (2, 2040);
INSERT INTO `sys_role_menu` VALUES (2, 2041);
INSERT INTO `sys_role_menu` VALUES (2, 2042);
INSERT INTO `sys_role_menu` VALUES (2, 2043);
INSERT INTO `sys_role_menu` VALUES (2, 2044);
INSERT INTO `sys_role_menu` VALUES (2, 2045);
INSERT INTO `sys_role_menu` VALUES (2, 2046);
INSERT INTO `sys_role_menu` VALUES (2, 2047);
INSERT INTO `sys_role_menu` VALUES (2, 2048);
INSERT INTO `sys_role_menu` VALUES (2, 2049);
INSERT INTO `sys_role_menu` VALUES (2, 2050);
INSERT INTO `sys_role_menu` VALUES (2, 2051);
INSERT INTO `sys_role_menu` VALUES (2, 2052);
INSERT INTO `sys_role_menu` VALUES (2, 2053);
INSERT INTO `sys_role_menu` VALUES (2, 2054);
INSERT INTO `sys_role_menu` VALUES (2, 2055);
INSERT INTO `sys_role_menu` VALUES (2, 2056);
INSERT INTO `sys_role_menu` VALUES (2, 2057);
INSERT INTO `sys_role_menu` VALUES (2, 2058);
INSERT INTO `sys_role_menu` VALUES (2, 2059);
INSERT INTO `sys_role_menu` VALUES (2, 2060);
INSERT INTO `sys_role_menu` VALUES (2, 2061);
INSERT INTO `sys_role_menu` VALUES (2, 2062);
INSERT INTO `sys_role_menu` VALUES (2, 2063);
INSERT INTO `sys_role_menu` VALUES (2, 2064);
INSERT INTO `sys_role_menu` VALUES (2, 2065);
INSERT INTO `sys_role_menu` VALUES (2, 2066);
INSERT INTO `sys_role_menu` VALUES (2, 2068);
-- ----------------------------
-- Table structure for sys_user
-- ----------------------------
DROP TABLE IF EXISTS `sys_user`;
CREATE TABLE `sys_user` (
`user_id` bigint NOT NULL AUTO_INCREMENT COMMENT '用户ID',
`dept_id` bigint NULL DEFAULT NULL COMMENT '部门ID',
`user_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '用户账号',
`nick_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '用户昵称',
`user_type` varchar(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '00' COMMENT '用户类型(00系统用户)',
`email` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '用户邮箱',
`phonenumber` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '手机号码',
`sex` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '用户性别(0男 1女 2未知)',
`avatar` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '头像地址',
`password` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '密码',
`status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '帐号状态(0正常 1停用)',
`del_flag` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
`login_ip` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '最后登录IP',
`login_date` datetime(0) NULL DEFAULT NULL COMMENT '最后登录时间',
`create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '创建者',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '更新者',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`user_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 101 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '用户信息表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of sys_user
-- ----------------------------
INSERT INTO `sys_user` VALUES (1, 103, 'admin', '小牛科技', '00', 'xn@163.com', '15888888888', '1', 'https://image.xnszz.com/2024/04/16/ce9d27f3035f5cdd576e0f5d37aa3f26_20240416215319A002.png', '$2a$10$VVBqF2.n1JV4YsN8u3ndk.mfLAa5rrVbC.pOQ97H4fNnO/QrHTwOO', '0', '0', '127.0.0.1', '2024-04-12 15:37:35', 'admin', '2024-04-12 15:37:35', '', '2024-04-12 16:00:03', '管理员');
INSERT INTO `sys_user` VALUES (2, 105, 'ry', '小牛科技', '00', 'xn@qq.com', '15666666666', '1', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '2', '127.0.0.1', '2024-04-12 15:37:35', 'admin', '2024-04-12 15:37:35', 'admin', '2024-04-12 16:00:18', '测试员');
INSERT INTO `sys_user` VALUES (100, NULL, 'xiaoniu_test', 'xiaoniu_test', '00', '', '', '0', '', '$2a$10$KyR.LeD3VfaW7cWqyCWdiOR4YEKVT.pQxFbVTC4DPzUHtrwKD0oJq', '0', '0', '', NULL, 'admin', '2024-04-14 22:00:55', 'admin', '2024-04-14 23:27:19', NULL);
-- ----------------------------
-- Table structure for sys_user_post
-- ----------------------------
DROP TABLE IF EXISTS `sys_user_post`;
CREATE TABLE `sys_user_post` (
`user_id` bigint NOT NULL COMMENT '用户ID',
`post_id` bigint NOT NULL COMMENT '岗位ID',
PRIMARY KEY (`user_id`, `post_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '用户与岗位关联表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of sys_user_post
-- ----------------------------
INSERT INTO `sys_user_post` VALUES (1, 1);
-- ----------------------------
-- Table structure for sys_user_role
-- ----------------------------
DROP TABLE IF EXISTS `sys_user_role`;
CREATE TABLE `sys_user_role` (
`user_id` bigint NOT NULL COMMENT '用户ID',
`role_id` bigint NOT NULL COMMENT '角色ID',
PRIMARY KEY (`user_id`, `role_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '用户和角色关联表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of sys_user_role
-- ----------------------------
INSERT INTO `sys_user_role` VALUES (1, 1);
INSERT INTO `sys_user_role` VALUES (100, 2);
-- ----------------------------
-- Table structure for tb_access_log
-- ----------------------------
DROP TABLE IF EXISTS `tb_access_log`;
CREATE TABLE `tb_access_log` (
`access_log_id` bigint NOT NULL AUTO_INCREMENT COMMENT '用户访问日志ID',
`member_user_id` bigint NULL DEFAULT NULL COMMENT '用户ID',
`access_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '访问路径',
`access_ip` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '访问IP',
`access_desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '访问描述',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`access_log_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 195 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '用户访问日志' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tb_access_log
-- ----------------------------
INSERT INTO `tb_access_log` VALUES (225, 7, '/api/member/memberUserRegister', '171.9.198.233', '用户注册', '2024-04-16 22:58:56');
INSERT INTO `tb_access_log` VALUES (226, 7, '/api/museum/getMuseumClassList', '171.9.198.233', '访问小程序', '2024-04-16 22:59:36');
INSERT INTO `tb_access_log` VALUES (227, 7, '/api/platform/getBannerList', '171.9.198.233', '访问小程序', '2024-04-16 22:59:36');
INSERT INTO `tb_access_log` VALUES (228, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 22:59:36');
INSERT INTO `tb_access_log` VALUES (229, 7, '/api/member/getMemberUserInfo', '171.9.198.233', '访问小程序', '2024-04-16 22:59:36');
INSERT INTO `tb_access_log` VALUES (230, 7, '/api/member/getMemberUserInfo', '171.9.198.233', '访问小程序', '2024-04-16 22:59:39');
INSERT INTO `tb_access_log` VALUES (233, 7, '/api/member/memberUserLogin', '171.9.198.233', '用户登录', '2024-04-16 23:01:54');
INSERT INTO `tb_access_log` VALUES (234, 7, '/api/member/getMemberUserInfo', '171.9.198.233', '访问小程序', '2024-04-16 23:01:55');
INSERT INTO `tb_access_log` VALUES (235, 7, '/api/member/getMemberUserInfo', '171.9.198.233', '访问小程序', '2024-04-16 23:02:01');
INSERT INTO `tb_access_log` VALUES (236, 7, '/api/platform/selectHolidayList', '171.9.198.233', '访问小程序', '2024-04-16 23:02:01');
INSERT INTO `tb_access_log` VALUES (237, 7, '/api/member/getMemberUserInfo', '171.9.198.233', '访问小程序', '2024-04-16 23:02:03');
INSERT INTO `tb_access_log` VALUES (238, 7, '/api/member/getMemberUserInfo', '171.9.198.233', '访问小程序', '2024-04-16 23:02:05');
INSERT INTO `tb_access_log` VALUES (239, 7, '/api/platform/selectHolidayList', '171.9.198.233', '访问小程序', '2024-04-16 23:02:05');
INSERT INTO `tb_access_log` VALUES (240, 7, '/api/member/getMemberUserInfo', '171.9.198.233', '访问小程序', '2024-04-16 23:02:07');
INSERT INTO `tb_access_log` VALUES (241, 7, '/api/member/getMemberUserInfo', '171.9.198.233', '访问小程序', '2024-04-16 23:02:13');
INSERT INTO `tb_access_log` VALUES (242, 7, '/api/member/getMemberUserInfo', '171.9.198.233', '访问小程序', '2024-04-16 23:02:20');
INSERT INTO `tb_access_log` VALUES (243, 7, '/api/member/getMemberUserInfo', '171.9.198.233', '访问小程序', '2024-04-16 23:02:24');
INSERT INTO `tb_access_log` VALUES (244, 7, '/api/member/getMemberUserInfo', '171.9.198.233', '访问小程序', '2024-04-16 23:02:25');
INSERT INTO `tb_access_log` VALUES (245, 7, '/api/platform/selectHolidayList', '171.9.198.233', '访问小程序', '2024-04-16 23:02:25');
INSERT INTO `tb_access_log` VALUES (248, 7, '/api/member/getMemberUserInfo', '171.9.198.233', '访问小程序', '2024-04-16 23:02:39');
INSERT INTO `tb_access_log` VALUES (251, 8, '/api/member/memberUserRegister', '171.8.60.169', '用户注册', '2024-04-16 23:02:55');
INSERT INTO `tb_access_log` VALUES (252, 8, '/api/member/getMemberUserInfo', '171.8.60.169', '访问小程序', '2024-04-16 23:02:55');
INSERT INTO `tb_access_log` VALUES (253, 8, '/api/platform/selectRegionTreeList', '171.8.60.169', '访问小程序', '2024-04-16 23:04:26');
INSERT INTO `tb_access_log` VALUES (254, 8, '/api/member/getMemberUserInfo', '171.8.60.169', '访问小程序', '2024-04-16 23:04:26');
INSERT INTO `tb_access_log` VALUES (255, 8, '/api/member/getMemberUserInfo', '171.8.60.169', '访问小程序', '2024-04-16 23:04:26');
INSERT INTO `tb_access_log` VALUES (256, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:04:28');
INSERT INTO `tb_access_log` VALUES (257, 7, '/api/platform/getBannerList', '171.9.198.233', '访问小程序', '2024-04-16 23:06:03');
INSERT INTO `tb_access_log` VALUES (258, 7, '/api/museum/getMuseumClassList', '171.9.198.233', '访问小程序', '2024-04-16 23:06:03');
INSERT INTO `tb_access_log` VALUES (259, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:06:04');
INSERT INTO `tb_access_log` VALUES (260, 7, '/api/platform/selectRegionTreeList', '171.9.198.233', '访问小程序', '2024-04-16 23:06:04');
INSERT INTO `tb_access_log` VALUES (261, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:06:05');
INSERT INTO `tb_access_log` VALUES (262, 8, '/api/member/getMemberUserInfo', '171.8.60.169', '访问小程序', '2024-04-16 23:06:13');
INSERT INTO `tb_access_log` VALUES (263, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:06:34');
INSERT INTO `tb_access_log` VALUES (264, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:06:36');
INSERT INTO `tb_access_log` VALUES (265, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:06:38');
INSERT INTO `tb_access_log` VALUES (266, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:06:39');
INSERT INTO `tb_access_log` VALUES (267, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:06:40');
INSERT INTO `tb_access_log` VALUES (268, 7, '/api/member/memberUserLogin', '171.9.198.233', '用户登录', '2024-04-16 23:06:49');
INSERT INTO `tb_access_log` VALUES (269, 7, '/api/member/getMemberUserInfo', '171.9.198.233', '访问小程序', '2024-04-16 23:06:49');
INSERT INTO `tb_access_log` VALUES (270, 7, '/api/platform/getInformationList', '171.9.198.233', '访问小程序', '2024-04-16 23:06:51');
INSERT INTO `tb_access_log` VALUES (271, 7, '/api/platform/getNoticeList', '171.9.198.233', '访问小程序', '2024-04-16 23:06:51');
INSERT INTO `tb_access_log` VALUES (272, 7, '/api/member/getMemberUserInfo', '171.9.198.233', '访问小程序', '2024-04-16 23:06:52');
INSERT INTO `tb_access_log` VALUES (273, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:06:54');
INSERT INTO `tb_access_log` VALUES (274, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:06:54');
INSERT INTO `tb_access_log` VALUES (275, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:06:55');
INSERT INTO `tb_access_log` VALUES (276, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:06:55');
INSERT INTO `tb_access_log` VALUES (277, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:06:55');
INSERT INTO `tb_access_log` VALUES (278, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:06:56');
INSERT INTO `tb_access_log` VALUES (279, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:06:56');
INSERT INTO `tb_access_log` VALUES (280, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:06:56');
INSERT INTO `tb_access_log` VALUES (281, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:06:56');
INSERT INTO `tb_access_log` VALUES (282, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:06:57');
INSERT INTO `tb_access_log` VALUES (283, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:06:57');
INSERT INTO `tb_access_log` VALUES (284, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:06:58');
INSERT INTO `tb_access_log` VALUES (285, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:06:58');
INSERT INTO `tb_access_log` VALUES (286, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:06:59');
INSERT INTO `tb_access_log` VALUES (287, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:07:00');
INSERT INTO `tb_access_log` VALUES (288, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:07:00');
INSERT INTO `tb_access_log` VALUES (289, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:07:00');
INSERT INTO `tb_access_log` VALUES (290, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:07:01');
INSERT INTO `tb_access_log` VALUES (291, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:07:01');
INSERT INTO `tb_access_log` VALUES (292, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:07:03');
INSERT INTO `tb_access_log` VALUES (293, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:07:04');
INSERT INTO `tb_access_log` VALUES (294, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:07:11');
INSERT INTO `tb_access_log` VALUES (295, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:07:23');
INSERT INTO `tb_access_log` VALUES (296, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:07:26');
INSERT INTO `tb_access_log` VALUES (297, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:07:27');
INSERT INTO `tb_access_log` VALUES (298, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:07:28');
INSERT INTO `tb_access_log` VALUES (299, 7, '/api/museum/getMuseumListByClassId', '171.9.198.233', '访问小程序', '2024-04-16 23:07:31');
INSERT INTO `tb_access_log` VALUES (300, 7, '/api/museum/getMuseumDetail', '171.9.198.233', '访问小程序', '2024-04-16 23:07:32');
INSERT INTO `tb_access_log` VALUES (301, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:07:33');
INSERT INTO `tb_access_log` VALUES (302, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:07:36');
INSERT INTO `tb_access_log` VALUES (303, 8, '/api/platform/getBannerList', '171.8.60.169', '访问小程序', '2024-04-16 23:07:37');
INSERT INTO `tb_access_log` VALUES (304, 8, '/api/museum/getMuseumClassList', '171.8.60.169', '访问小程序', '2024-04-16 23:07:37');
INSERT INTO `tb_access_log` VALUES (305, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:07:37');
INSERT INTO `tb_access_log` VALUES (306, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:07:46');
INSERT INTO `tb_access_log` VALUES (307, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:07:47');
INSERT INTO `tb_access_log` VALUES (308, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:07:48');
INSERT INTO `tb_access_log` VALUES (309, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:07:49');
INSERT INTO `tb_access_log` VALUES (310, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:07:52');
INSERT INTO `tb_access_log` VALUES (311, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:07:53');
INSERT INTO `tb_access_log` VALUES (312, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:07:54');
INSERT INTO `tb_access_log` VALUES (313, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:07:54');
INSERT INTO `tb_access_log` VALUES (314, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:07:59');
INSERT INTO `tb_access_log` VALUES (315, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:08:00');
INSERT INTO `tb_access_log` VALUES (316, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:08:01');
INSERT INTO `tb_access_log` VALUES (317, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:08:02');
INSERT INTO `tb_access_log` VALUES (318, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:08:03');
INSERT INTO `tb_access_log` VALUES (319, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:08:04');
INSERT INTO `tb_access_log` VALUES (320, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:08:05');
INSERT INTO `tb_access_log` VALUES (321, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:08:05');
INSERT INTO `tb_access_log` VALUES (322, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:08:05');
INSERT INTO `tb_access_log` VALUES (323, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:08:06');
INSERT INTO `tb_access_log` VALUES (324, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:08:06');
INSERT INTO `tb_access_log` VALUES (325, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:08:07');
INSERT INTO `tb_access_log` VALUES (326, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:08:07');
INSERT INTO `tb_access_log` VALUES (327, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:08:07');
INSERT INTO `tb_access_log` VALUES (328, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:08:08');
INSERT INTO `tb_access_log` VALUES (329, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:08:08');
INSERT INTO `tb_access_log` VALUES (330, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:08:08');
INSERT INTO `tb_access_log` VALUES (331, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:08:08');
INSERT INTO `tb_access_log` VALUES (332, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:08:15');
INSERT INTO `tb_access_log` VALUES (333, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:08:15');
INSERT INTO `tb_access_log` VALUES (334, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:08:17');
INSERT INTO `tb_access_log` VALUES (335, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:08:20');
INSERT INTO `tb_access_log` VALUES (336, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:08:22');
INSERT INTO `tb_access_log` VALUES (337, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:08:23');
INSERT INTO `tb_access_log` VALUES (338, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:08:24');
INSERT INTO `tb_access_log` VALUES (339, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:08:59');
INSERT INTO `tb_access_log` VALUES (340, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:09:03');
INSERT INTO `tb_access_log` VALUES (341, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:09:13');
INSERT INTO `tb_access_log` VALUES (342, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:09:14');
INSERT INTO `tb_access_log` VALUES (343, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:10:02');
INSERT INTO `tb_access_log` VALUES (344, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:10:03');
INSERT INTO `tb_access_log` VALUES (345, 8, '/api/platform/selectRegionTreeList', '171.8.60.169', '访问小程序', '2024-04-16 23:11:22');
INSERT INTO `tb_access_log` VALUES (346, 8, '/api/platform/selectRegionTreeList', '171.8.60.169', '访问小程序', '2024-04-16 23:11:22');
INSERT INTO `tb_access_log` VALUES (347, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:11:25');
INSERT INTO `tb_access_log` VALUES (348, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:11:25');
INSERT INTO `tb_access_log` VALUES (349, 8, '/api/platform/selectRegionTreeList', '171.8.60.169', '访问小程序', '2024-04-16 23:12:07');
INSERT INTO `tb_access_log` VALUES (350, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:12:09');
INSERT INTO `tb_access_log` VALUES (351, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:12:15');
INSERT INTO `tb_access_log` VALUES (352, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:12:17');
INSERT INTO `tb_access_log` VALUES (353, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:12:18');
INSERT INTO `tb_access_log` VALUES (354, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:12:22');
INSERT INTO `tb_access_log` VALUES (355, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:12:23');
INSERT INTO `tb_access_log` VALUES (356, 7, '/api/platform/getBannerList', '171.9.198.233', '访问小程序', '2024-04-16 23:12:35');
INSERT INTO `tb_access_log` VALUES (357, 7, '/api/museum/getMuseumClassList', '171.9.198.233', '访问小程序', '2024-04-16 23:12:35');
INSERT INTO `tb_access_log` VALUES (358, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:12:35');
INSERT INTO `tb_access_log` VALUES (359, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:12:36');
INSERT INTO `tb_access_log` VALUES (360, 7, '/api/platform/getInformationList', '171.9.198.233', '访问小程序', '2024-04-16 23:12:36');
INSERT INTO `tb_access_log` VALUES (361, 7, '/api/platform/getNoticeList', '171.9.198.233', '访问小程序', '2024-04-16 23:12:36');
INSERT INTO `tb_access_log` VALUES (362, 7, '/api/platform/selectRegionTreeList', '171.9.198.233', '访问小程序', '2024-04-16 23:12:37');
INSERT INTO `tb_access_log` VALUES (363, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:12:37');
INSERT INTO `tb_access_log` VALUES (364, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:12:37');
INSERT INTO `tb_access_log` VALUES (365, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:12:40');
INSERT INTO `tb_access_log` VALUES (366, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:12:40');
INSERT INTO `tb_access_log` VALUES (367, 8, '/api/platform/getBannerList', '171.8.60.169', '访问小程序', '2024-04-16 23:12:46');
INSERT INTO `tb_access_log` VALUES (368, 8, '/api/museum/getMuseumClassList', '171.8.60.169', '访问小程序', '2024-04-16 23:12:46');
INSERT INTO `tb_access_log` VALUES (369, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:12:47');
INSERT INTO `tb_access_log` VALUES (370, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:12:54');
INSERT INTO `tb_access_log` VALUES (371, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:12:54');
INSERT INTO `tb_access_log` VALUES (372, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:12:54');
INSERT INTO `tb_access_log` VALUES (373, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:12:56');
INSERT INTO `tb_access_log` VALUES (374, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:12:57');
INSERT INTO `tb_access_log` VALUES (375, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:12:59');
INSERT INTO `tb_access_log` VALUES (376, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:13:00');
INSERT INTO `tb_access_log` VALUES (377, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:13:00');
INSERT INTO `tb_access_log` VALUES (378, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:13:00');
INSERT INTO `tb_access_log` VALUES (379, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:13:00');
INSERT INTO `tb_access_log` VALUES (380, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:13:01');
INSERT INTO `tb_access_log` VALUES (381, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:13:01');
INSERT INTO `tb_access_log` VALUES (382, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:13:01');
INSERT INTO `tb_access_log` VALUES (383, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:13:02');
INSERT INTO `tb_access_log` VALUES (384, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:13:02');
INSERT INTO `tb_access_log` VALUES (385, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:13:05');
INSERT INTO `tb_access_log` VALUES (386, 7, '/api/museum/getMuseumListByPage', '171.9.198.233', '访问小程序', '2024-04-16 23:13:05');
INSERT INTO `tb_access_log` VALUES (387, 8, '/api/platform/selectRegionTreeList', '171.8.60.169', '访问小程序', '2024-04-16 23:16:27');
INSERT INTO `tb_access_log` VALUES (388, 8, '/api/platform/getBannerList', '171.8.60.169', '访问小程序', '2024-04-16 23:16:27');
INSERT INTO `tb_access_log` VALUES (389, 8, '/api/museum/getMuseumClassList', '171.8.60.169', '访问小程序', '2024-04-16 23:16:27');
INSERT INTO `tb_access_log` VALUES (390, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:16:27');
INSERT INTO `tb_access_log` VALUES (391, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:16:27');
INSERT INTO `tb_access_log` VALUES (392, 8, '/api/platform/selectRegionTreeList', '171.8.60.169', '访问小程序', '2024-04-16 23:17:13');
INSERT INTO `tb_access_log` VALUES (393, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:17:14');
INSERT INTO `tb_access_log` VALUES (394, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:18:33');
INSERT INTO `tb_access_log` VALUES (395, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:18:34');
INSERT INTO `tb_access_log` VALUES (396, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:18:35');
INSERT INTO `tb_access_log` VALUES (397, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:18:37');
INSERT INTO `tb_access_log` VALUES (398, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:18:40');
INSERT INTO `tb_access_log` VALUES (399, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:18:41');
INSERT INTO `tb_access_log` VALUES (400, 8, '/api/platform/selectRegionTreeList', '171.8.60.169', '访问小程序', '2024-04-16 23:40:53');
INSERT INTO `tb_access_log` VALUES (401, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:40:56');
INSERT INTO `tb_access_log` VALUES (402, 8, '/api/platform/selectRegionTreeList', '171.8.60.169', '访问小程序', '2024-04-16 23:42:37');
INSERT INTO `tb_access_log` VALUES (403, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:42:38');
INSERT INTO `tb_access_log` VALUES (404, 8, '/api/platform/selectRegionTreeList', '171.8.60.169', '访问小程序', '2024-04-16 23:43:13');
INSERT INTO `tb_access_log` VALUES (405, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:43:15');
INSERT INTO `tb_access_log` VALUES (406, 8, '/api/platform/selectRegionTreeList', '171.8.60.169', '访问小程序', '2024-04-16 23:44:54');
INSERT INTO `tb_access_log` VALUES (407, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:44:56');
INSERT INTO `tb_access_log` VALUES (408, 8, '/api/platform/selectRegionTreeList', '171.8.60.169', '访问小程序', '2024-04-16 23:45:06');
INSERT INTO `tb_access_log` VALUES (409, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:45:08');
INSERT INTO `tb_access_log` VALUES (410, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:45:20');
INSERT INTO `tb_access_log` VALUES (411, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:45:21');
INSERT INTO `tb_access_log` VALUES (412, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:45:25');
INSERT INTO `tb_access_log` VALUES (413, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:45:26');
INSERT INTO `tb_access_log` VALUES (414, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:45:27');
INSERT INTO `tb_access_log` VALUES (415, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:45:28');
INSERT INTO `tb_access_log` VALUES (416, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:45:29');
INSERT INTO `tb_access_log` VALUES (417, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:45:32');
INSERT INTO `tb_access_log` VALUES (418, 8, '/api/platform/selectRegionTreeList', '171.8.60.169', '访问小程序', '2024-04-16 23:47:21');
INSERT INTO `tb_access_log` VALUES (419, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:47:23');
INSERT INTO `tb_access_log` VALUES (420, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:48:57');
INSERT INTO `tb_access_log` VALUES (421, 8, '/api/platform/selectRegionTreeList', '171.8.60.169', '访问小程序', '2024-04-16 23:49:27');
INSERT INTO `tb_access_log` VALUES (422, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:49:27');
INSERT INTO `tb_access_log` VALUES (423, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:49:36');
INSERT INTO `tb_access_log` VALUES (424, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:49:39');
INSERT INTO `tb_access_log` VALUES (425, 8, '/api/platform/selectRegionTreeList', '171.8.60.169', '访问小程序', '2024-04-16 23:50:18');
INSERT INTO `tb_access_log` VALUES (426, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:50:20');
INSERT INTO `tb_access_log` VALUES (427, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:50:23');
INSERT INTO `tb_access_log` VALUES (428, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:50:25');
INSERT INTO `tb_access_log` VALUES (429, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:50:26');
INSERT INTO `tb_access_log` VALUES (430, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:50:27');
INSERT INTO `tb_access_log` VALUES (431, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:50:29');
INSERT INTO `tb_access_log` VALUES (432, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:50:35');
INSERT INTO `tb_access_log` VALUES (433, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:50:38');
INSERT INTO `tb_access_log` VALUES (434, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:50:44');
INSERT INTO `tb_access_log` VALUES (435, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:50:46');
INSERT INTO `tb_access_log` VALUES (436, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:50:55');
INSERT INTO `tb_access_log` VALUES (437, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:50:56');
INSERT INTO `tb_access_log` VALUES (438, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:51:02');
INSERT INTO `tb_access_log` VALUES (439, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:51:05');
INSERT INTO `tb_access_log` VALUES (440, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:51:06');
INSERT INTO `tb_access_log` VALUES (441, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:51:09');
INSERT INTO `tb_access_log` VALUES (442, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:51:11');
INSERT INTO `tb_access_log` VALUES (443, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:51:12');
INSERT INTO `tb_access_log` VALUES (444, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:51:13');
INSERT INTO `tb_access_log` VALUES (445, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:51:14');
INSERT INTO `tb_access_log` VALUES (446, 8, '/api/platform/getBannerList', '171.8.60.169', '访问小程序', '2024-04-16 23:51:37');
INSERT INTO `tb_access_log` VALUES (447, 8, '/api/museum/getMuseumClassList', '171.8.60.169', '访问小程序', '2024-04-16 23:51:37');
INSERT INTO `tb_access_log` VALUES (448, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:51:38');
INSERT INTO `tb_access_log` VALUES (449, 8, '/api/platform/selectRegionTreeList', '171.8.60.169', '访问小程序', '2024-04-16 23:51:45');
INSERT INTO `tb_access_log` VALUES (450, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:51:45');
INSERT INTO `tb_access_log` VALUES (451, 8, '/api/museum/getMuseumDetail', '171.8.60.169', '访问小程序', '2024-04-16 23:51:54');
INSERT INTO `tb_access_log` VALUES (452, 8, '/api/museum/getMuseumDetail', '171.8.60.169', '访问小程序', '2024-04-16 23:52:41');
INSERT INTO `tb_access_log` VALUES (453, 8, '/api/museum/getMuseumDetail', '171.8.60.169', '访问小程序', '2024-04-16 23:52:52');
INSERT INTO `tb_access_log` VALUES (454, 8, '/api/platform/selectRegionTreeList', '171.8.60.169', '访问小程序', '2024-04-16 23:53:15');
INSERT INTO `tb_access_log` VALUES (455, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:53:17');
INSERT INTO `tb_access_log` VALUES (456, 8, '/api/museum/getMuseumDetail', '171.8.60.169', '访问小程序', '2024-04-16 23:53:23');
INSERT INTO `tb_access_log` VALUES (457, 8, '/api/platform/selectRegionTreeList', '171.8.60.169', '访问小程序', '2024-04-16 23:54:49');
INSERT INTO `tb_access_log` VALUES (458, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:54:50');
INSERT INTO `tb_access_log` VALUES (459, 8, '/api/museum/getMuseumDetail', '171.8.60.169', '访问小程序', '2024-04-16 23:54:55');
INSERT INTO `tb_access_log` VALUES (460, 8, '/api/platform/selectRegionTreeList', '171.8.60.169', '访问小程序', '2024-04-16 23:55:30');
INSERT INTO `tb_access_log` VALUES (461, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:55:31');
INSERT INTO `tb_access_log` VALUES (462, 8, '/api/museum/getMuseumDetail', '171.8.60.169', '访问小程序', '2024-04-16 23:55:35');
INSERT INTO `tb_access_log` VALUES (463, 8, '/api/platform/selectRegionTreeList', '171.8.60.169', '访问小程序', '2024-04-16 23:56:20');
INSERT INTO `tb_access_log` VALUES (464, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:56:21');
INSERT INTO `tb_access_log` VALUES (465, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:56:30');
INSERT INTO `tb_access_log` VALUES (466, 8, '/api/museum/getMuseumDetail', '171.8.60.169', '访问小程序', '2024-04-16 23:56:35');
INSERT INTO `tb_access_log` VALUES (467, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:57:02');
INSERT INTO `tb_access_log` VALUES (468, 8, '/api/museum/getMuseumDetail', '171.8.60.169', '访问小程序', '2024-04-16 23:57:07');
INSERT INTO `tb_access_log` VALUES (469, 8, '/api/platform/getBannerList', '171.8.60.169', '访问小程序', '2024-04-16 23:57:49');
INSERT INTO `tb_access_log` VALUES (470, 8, '/api/museum/getMuseumClassList', '171.8.60.169', '访问小程序', '2024-04-16 23:57:49');
INSERT INTO `tb_access_log` VALUES (471, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-16 23:57:50');
INSERT INTO `tb_access_log` VALUES (472, 8, '/api/museum/getMuseumListByClassId', '171.8.60.169', '访问小程序', '2024-04-16 23:58:18');
INSERT INTO `tb_access_log` VALUES (473, 8, '/api/museum/getMuseumDetail', '171.8.60.169', '访问小程序', '2024-04-16 23:58:22');
INSERT INTO `tb_access_log` VALUES (474, 8, '/api/museum/getMuseumDetail', '171.8.60.169', '访问小程序', '2024-04-17 00:04:18');
INSERT INTO `tb_access_log` VALUES (475, 8, '/api/museum/getMuseumDetail', '171.8.60.169', '访问小程序', '2024-04-17 00:04:18');
INSERT INTO `tb_access_log` VALUES (476, 8, '/api/platform/selectRegionTreeList', '171.8.60.169', '访问小程序', '2024-04-17 00:04:32');
INSERT INTO `tb_access_log` VALUES (477, 8, '/api/platform/getBannerList', '171.8.60.169', '访问小程序', '2024-04-17 00:04:35');
INSERT INTO `tb_access_log` VALUES (478, 8, '/api/museum/getMuseumClassList', '171.8.60.169', '访问小程序', '2024-04-17 00:04:35');
INSERT INTO `tb_access_log` VALUES (479, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-17 00:04:36');
INSERT INTO `tb_access_log` VALUES (480, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-17 00:04:36');
INSERT INTO `tb_access_log` VALUES (481, 8, '/api/museum/getMuseumListByClassId', '171.8.60.169', '访问小程序', '2024-04-17 00:04:47');
INSERT INTO `tb_access_log` VALUES (482, 8, '/api/museum/getMuseumDetail', '171.8.60.169', '访问小程序', '2024-04-17 00:04:52');
INSERT INTO `tb_access_log` VALUES (483, 8, '/api/platform/selectRegionTreeList', '171.8.60.169', '访问小程序', '2024-04-17 00:08:01');
INSERT INTO `tb_access_log` VALUES (484, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-17 00:08:05');
INSERT INTO `tb_access_log` VALUES (485, 8, '/api/platform/getBannerList', '171.8.60.169', '访问小程序', '2024-04-17 00:08:14');
INSERT INTO `tb_access_log` VALUES (486, 8, '/api/museum/getMuseumClassList', '171.8.60.169', '访问小程序', '2024-04-17 00:08:14');
INSERT INTO `tb_access_log` VALUES (487, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-17 00:08:14');
INSERT INTO `tb_access_log` VALUES (488, 8, '/api/museum/getMuseumListByClassId', '171.8.60.169', '访问小程序', '2024-04-17 00:08:21');
INSERT INTO `tb_access_log` VALUES (489, 8, '/api/museum/getMuseumDetail', '171.8.60.169', '访问小程序', '2024-04-17 00:08:26');
INSERT INTO `tb_access_log` VALUES (490, 8, '/api/museum/getMuseumDetail', '171.8.60.169', '访问小程序', '2024-04-17 00:08:48');
INSERT INTO `tb_access_log` VALUES (491, 8, '/api/platform/selectRegionTreeList', '171.8.60.169', '访问小程序', '2024-04-17 00:08:56');
INSERT INTO `tb_access_log` VALUES (492, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-17 00:09:00');
INSERT INTO `tb_access_log` VALUES (493, 8, '/api/platform/getBannerList', '171.8.60.169', '访问小程序', '2024-04-17 00:09:03');
INSERT INTO `tb_access_log` VALUES (494, 8, '/api/museum/getMuseumClassList', '171.8.60.169', '访问小程序', '2024-04-17 00:09:03');
INSERT INTO `tb_access_log` VALUES (495, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-17 00:09:03');
INSERT INTO `tb_access_log` VALUES (496, 8, '/api/museum/getMuseumListByClassId', '171.8.60.169', '访问小程序', '2024-04-17 00:09:14');
INSERT INTO `tb_access_log` VALUES (497, 8, '/api/museum/getMuseumDetail', '171.8.60.169', '访问小程序', '2024-04-17 00:09:17');
INSERT INTO `tb_access_log` VALUES (498, 8, '/api/museum/getMuseumDetail', '171.8.60.169', '访问小程序', '2024-04-17 00:09:28');
INSERT INTO `tb_access_log` VALUES (499, 8, '/api/museum/getMuseumDetail', '171.8.60.169', '访问小程序', '2024-04-17 00:09:38');
INSERT INTO `tb_access_log` VALUES (500, 8, '/api/platform/selectRegionTreeList', '171.8.60.169', '访问小程序', '2024-04-17 00:10:19');
INSERT INTO `tb_access_log` VALUES (501, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-17 00:10:21');
INSERT INTO `tb_access_log` VALUES (502, 8, '/api/platform/getBannerList', '171.8.60.169', '访问小程序', '2024-04-17 00:10:25');
INSERT INTO `tb_access_log` VALUES (503, 8, '/api/museum/getMuseumClassList', '171.8.60.169', '访问小程序', '2024-04-17 00:10:25');
INSERT INTO `tb_access_log` VALUES (504, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-17 00:10:27');
INSERT INTO `tb_access_log` VALUES (505, 8, '/api/museum/getMuseumListByClassId', '171.8.60.169', '访问小程序', '2024-04-17 00:10:39');
INSERT INTO `tb_access_log` VALUES (506, 8, '/api/museum/getMuseumDetail', '171.8.60.169', '访问小程序', '2024-04-17 00:10:47');
INSERT INTO `tb_access_log` VALUES (507, 7, '/api/museum/getMuseumClassList', '115.60.41.230', '访问小程序', '2024-04-17 00:29:46');
INSERT INTO `tb_access_log` VALUES (508, 7, '/api/platform/getBannerList', '115.60.41.230', '访问小程序', '2024-04-17 00:29:46');
INSERT INTO `tb_access_log` VALUES (509, 7, '/api/museum/getMuseumListByPage', '115.60.41.230', '访问小程序', '2024-04-17 00:29:46');
INSERT INTO `tb_access_log` VALUES (510, 7, '/api/museum/getMuseumListByClassId', '115.60.41.230', '访问小程序', '2024-04-17 00:29:50');
INSERT INTO `tb_access_log` VALUES (511, 7, '/api/museum/getMuseumListByClassId', '115.60.41.230', '访问小程序', '2024-04-17 00:29:51');
INSERT INTO `tb_access_log` VALUES (512, 7, '/api/museum/getMuseumDetail', '115.60.41.230', '访问小程序', '2024-04-17 00:29:52');
INSERT INTO `tb_access_log` VALUES (513, 7, '/api/platform/selectRegionTreeList', '115.60.41.230', '访问小程序', '2024-04-17 00:29:59');
INSERT INTO `tb_access_log` VALUES (514, 7, '/api/museum/getMuseumListByPage', '115.60.41.230', '访问小程序', '2024-04-17 00:29:59');
INSERT INTO `tb_access_log` VALUES (515, 7, '/api/platform/getInformationList', '115.60.41.230', '访问小程序', '2024-04-17 00:30:01');
INSERT INTO `tb_access_log` VALUES (516, 7, '/api/platform/getNoticeList', '115.60.41.230', '访问小程序', '2024-04-17 00:30:01');
INSERT INTO `tb_access_log` VALUES (517, 7, '/api/member/getMemberUserInfo', '115.60.41.230', '访问小程序', '2024-04-17 00:30:02');
INSERT INTO `tb_access_log` VALUES (518, 7, '/api/member/getMemberUserInfo', '115.60.41.230', '访问小程序', '2024-04-17 00:30:02');
INSERT INTO `tb_access_log` VALUES (519, 7, '/api/member/getMemberUserInfo', '115.60.41.230', '访问小程序', '2024-04-17 00:30:04');
INSERT INTO `tb_access_log` VALUES (520, 7, '/api/platform/selectRuleByType', '115.60.41.230', '访问小程序', '2024-04-17 00:30:05');
INSERT INTO `tb_access_log` VALUES (521, 7, '/api/member/getMemberUserInfo', '115.60.41.230', '访问小程序', '2024-04-17 00:30:06');
INSERT INTO `tb_access_log` VALUES (522, 7, '/api/museum/getMuseumListByPage', '115.60.41.230', '访问小程序', '2024-04-17 00:30:13');
INSERT INTO `tb_access_log` VALUES (523, 7, '/api/museum/getMuseumListByPage', '115.60.41.230', '访问小程序', '2024-04-17 00:30:25');
INSERT INTO `tb_access_log` VALUES (524, 7, '/api/museum/getMuseumListByPage', '115.60.41.230', '访问小程序', '2024-04-17 00:30:25');
INSERT INTO `tb_access_log` VALUES (525, 7, '/api/museum/getMuseumListByPage', '115.60.41.230', '访问小程序', '2024-04-17 00:30:26');
INSERT INTO `tb_access_log` VALUES (526, 7, '/api/museum/getMuseumListByPage', '115.60.41.230', '访问小程序', '2024-04-17 00:30:31');
INSERT INTO `tb_access_log` VALUES (527, 7, '/api/museum/getMuseumListByPage', '115.60.41.230', '访问小程序', '2024-04-17 00:30:31');
INSERT INTO `tb_access_log` VALUES (528, 7, '/api/museum/getMuseumListByPage', '115.60.41.230', '访问小程序', '2024-04-17 00:30:34');
INSERT INTO `tb_access_log` VALUES (529, 7, '/api/museum/getMuseumListByPage', '115.60.41.230', '访问小程序', '2024-04-17 00:30:35');
INSERT INTO `tb_access_log` VALUES (530, 7, '/api/museum/getMuseumListByPage', '115.60.41.230', '访问小程序', '2024-04-17 00:30:54');
INSERT INTO `tb_access_log` VALUES (531, 7, '/api/museum/getMuseumListByPage', '115.60.41.230', '访问小程序', '2024-04-17 00:30:57');
INSERT INTO `tb_access_log` VALUES (532, 7, '/api/museum/getMuseumListByPage', '115.60.41.230', '访问小程序', '2024-04-17 00:30:58');
INSERT INTO `tb_access_log` VALUES (533, 7, '/api/museum/getMuseumListByPage', '115.60.41.230', '访问小程序', '2024-04-17 00:30:58');
INSERT INTO `tb_access_log` VALUES (534, 7, '/api/museum/getMuseumListByPage', '115.60.41.230', '访问小程序', '2024-04-17 00:31:02');
INSERT INTO `tb_access_log` VALUES (535, 7, '/api/museum/getMuseumListByPage', '115.60.41.230', '访问小程序', '2024-04-17 00:31:04');
INSERT INTO `tb_access_log` VALUES (536, 7, '/api/museum/getMuseumListByPage', '115.60.41.230', '访问小程序', '2024-04-17 00:31:04');
INSERT INTO `tb_access_log` VALUES (537, 7, '/api/museum/getMuseumListByPage', '115.60.41.230', '访问小程序', '2024-04-17 00:31:05');
INSERT INTO `tb_access_log` VALUES (538, 7, '/api/museum/getMuseumListByPage', '115.60.41.230', '访问小程序', '2024-04-17 00:31:06');
INSERT INTO `tb_access_log` VALUES (539, 7, '/api/museum/getMuseumListByPage', '115.60.41.230', '访问小程序', '2024-04-17 00:31:07');
INSERT INTO `tb_access_log` VALUES (540, 7, '/api/museum/getMuseumListByPage', '115.60.41.230', '访问小程序', '2024-04-17 00:31:09');
INSERT INTO `tb_access_log` VALUES (541, 7, '/api/platform/selectRegionTreeList', '115.60.41.230', '访问小程序', '2024-04-17 00:31:17');
INSERT INTO `tb_access_log` VALUES (542, 7, '/api/museum/getMuseumListByPage', '115.60.41.230', '访问小程序', '2024-04-17 00:31:18');
INSERT INTO `tb_access_log` VALUES (543, 8, '/api/platform/selectRegionTreeList', '171.8.60.169', '访问小程序', '2024-04-17 10:09:17');
INSERT INTO `tb_access_log` VALUES (544, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-17 10:09:18');
INSERT INTO `tb_access_log` VALUES (545, 8, '/api/platform/getBannerList', '171.8.60.169', '访问小程序', '2024-04-17 10:09:25');
INSERT INTO `tb_access_log` VALUES (546, 8, '/api/museum/getMuseumClassList', '171.8.60.169', '访问小程序', '2024-04-17 10:09:25');
INSERT INTO `tb_access_log` VALUES (547, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-17 10:09:25');
INSERT INTO `tb_access_log` VALUES (548, 8, '/api/platform/getBannerList', '171.8.60.169', '访问小程序', '2024-04-17 10:09:44');
INSERT INTO `tb_access_log` VALUES (549, 8, '/api/museum/getMuseumClassList', '171.8.60.169', '访问小程序', '2024-04-17 10:09:44');
INSERT INTO `tb_access_log` VALUES (550, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-17 10:09:45');
INSERT INTO `tb_access_log` VALUES (551, 8, '/api/platform/getBannerList', '171.8.60.169', '访问小程序', '2024-04-17 10:22:35');
INSERT INTO `tb_access_log` VALUES (552, 8, '/api/museum/getMuseumClassList', '171.8.60.169', '访问小程序', '2024-04-17 10:22:35');
INSERT INTO `tb_access_log` VALUES (553, 8, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-17 10:22:36');
INSERT INTO `tb_access_log` VALUES (554, 7, '/api/museum/getMuseumClassList', '171.8.60.169', '访问小程序', '2024-04-17 10:23:45');
INSERT INTO `tb_access_log` VALUES (555, 7, '/api/platform/getBannerList', '171.8.60.169', '访问小程序', '2024-04-17 10:23:45');
INSERT INTO `tb_access_log` VALUES (556, 7, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-17 10:23:45');
INSERT INTO `tb_access_log` VALUES (557, 7, '/api/platform/getBannerList', '171.8.60.169', '访问小程序', '2024-04-17 10:23:50');
INSERT INTO `tb_access_log` VALUES (558, 7, '/api/museum/getMuseumClassList', '171.8.60.169', '访问小程序', '2024-04-17 10:23:50');
INSERT INTO `tb_access_log` VALUES (559, 7, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-17 10:23:50');
INSERT INTO `tb_access_log` VALUES (560, 7, '/api/museum/getMuseumClassList', '171.8.60.169', '访问小程序', '2024-04-17 10:23:55');
INSERT INTO `tb_access_log` VALUES (561, 7, '/api/platform/getBannerList', '171.8.60.169', '访问小程序', '2024-04-17 10:23:55');
INSERT INTO `tb_access_log` VALUES (562, 7, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-17 10:23:55');
INSERT INTO `tb_access_log` VALUES (563, 7, '/api/platform/selectRegionTreeList', '171.8.60.169', '访问小程序', '2024-04-17 10:23:56');
INSERT INTO `tb_access_log` VALUES (564, 7, '/api/museum/getMuseumListByPage', '171.8.60.169', '访问小程序', '2024-04-17 10:23:57');
INSERT INTO `tb_access_log` VALUES (565, 7, '/api/platform/getInformationList', '171.8.60.169', '访问小程序', '2024-04-17 10:23:57');
INSERT INTO `tb_access_log` VALUES (566, 7, '/api/platform/getNoticeList', '171.8.60.169', '访问小程序', '2024-04-17 10:23:57');
INSERT INTO `tb_access_log` VALUES (567, 7, '/api/member/getMemberUserInfo', '171.8.60.169', '访问小程序', '2024-04-17 10:23:58');
INSERT INTO `tb_access_log` VALUES (568, 7, '/api/member/getMemberUserInfo', '171.8.60.169', '访问小程序', '2024-04-17 10:23:58');
INSERT INTO `tb_access_log` VALUES (569, 7, '/api/member/getMemberUserInfo', '171.8.60.169', '访问小程序', '2024-04-17 10:24:00');
INSERT INTO `tb_access_log` VALUES (570, 7, '/api/member/getMemberUserInfo', '171.8.60.169', '访问小程序', '2024-04-17 10:24:02');
INSERT INTO `tb_access_log` VALUES (571, 7, '/api/member/getMemberUserInfo', '171.10.115.223', '访问小程序', '2024-04-17 10:27:02');
INSERT INTO `tb_access_log` VALUES (572, 7, '/api/museum/getMuseumClassList', '171.10.115.223', '访问小程序', '2024-04-17 10:27:23');
INSERT INTO `tb_access_log` VALUES (573, 7, '/api/platform/getBannerList', '171.10.115.223', '访问小程序', '2024-04-17 10:27:23');
INSERT INTO `tb_access_log` VALUES (574, 7, '/api/museum/getMuseumListByPage', '171.10.115.223', '访问小程序', '2024-04-17 10:27:24');
INSERT INTO `tb_access_log` VALUES (575, 7, '/api/platform/getBannerList', '171.10.115.223', '访问小程序', '2024-04-17 10:27:28');
INSERT INTO `tb_access_log` VALUES (576, 7, '/api/museum/getMuseumClassList', '171.10.115.223', '访问小程序', '2024-04-17 10:27:28');
INSERT INTO `tb_access_log` VALUES (577, 7, '/api/museum/getMuseumListByPage', '171.10.115.223', '访问小程序', '2024-04-17 10:27:29');
INSERT INTO `tb_access_log` VALUES (578, 7, '/api/platform/getNoticeList', '171.10.115.223', '访问小程序', '2024-04-17 10:27:30');
INSERT INTO `tb_access_log` VALUES (579, 7, '/api/platform/getInformationList', '171.10.115.223', '访问小程序', '2024-04-17 10:27:30');
INSERT INTO `tb_access_log` VALUES (580, 7, '/api/platform/selectRegionTreeList', '171.10.115.223', '访问小程序', '2024-04-17 10:27:32');
INSERT INTO `tb_access_log` VALUES (581, 7, '/api/museum/getMuseumListByPage', '171.10.115.223', '访问小程序', '2024-04-17 10:27:32');
INSERT INTO `tb_access_log` VALUES (582, 7, '/api/museum/getMuseumClassList', '171.10.115.223', '访问小程序', '2024-04-17 10:28:05');
INSERT INTO `tb_access_log` VALUES (583, 7, '/api/platform/getBannerList', '171.10.115.223', '访问小程序', '2024-04-17 10:28:05');
INSERT INTO `tb_access_log` VALUES (584, 7, '/api/museum/getMuseumListByPage', '171.10.115.223', '访问小程序', '2024-04-17 10:28:06');
INSERT INTO `tb_access_log` VALUES (585, 7, '/api/member/getMemberUserInfo', '171.10.115.223', '访问小程序', '2024-04-17 10:28:10');
INSERT INTO `tb_access_log` VALUES (586, 7, '/api/member/getMemberUserInfo', '171.10.115.223', '访问小程序', '2024-04-17 10:28:10');
INSERT INTO `tb_access_log` VALUES (587, 7, '/api/platform/getNoticeList', '171.10.115.223', '访问小程序', '2024-04-17 10:28:12');
INSERT INTO `tb_access_log` VALUES (588, 7, '/api/platform/getInformationList', '171.10.115.223', '访问小程序', '2024-04-17 10:28:12');
INSERT INTO `tb_access_log` VALUES (589, 7, '/api/platform/selectRegionTreeList', '171.10.115.223', '访问小程序', '2024-04-17 10:28:12');
INSERT INTO `tb_access_log` VALUES (590, 7, '/api/museum/getMuseumListByPage', '171.10.115.223', '访问小程序', '2024-04-17 10:28:12');
INSERT INTO `tb_access_log` VALUES (591, 7, '/api/platform/selectRegionTreeList', '171.10.115.223', '访问小程序', '2024-04-17 10:28:18');
INSERT INTO `tb_access_log` VALUES (592, 7, '/api/museum/getMuseumListByPage', '171.10.115.223', '访问小程序', '2024-04-17 10:28:18');
INSERT INTO `tb_access_log` VALUES (593, 7, '/api/member/getMemberUserInfo', '171.10.115.223', '访问小程序', '2024-04-17 10:28:23');
INSERT INTO `tb_access_log` VALUES (594, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 10:44:28');
INSERT INTO `tb_access_log` VALUES (595, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 10:44:28');
INSERT INTO `tb_access_log` VALUES (596, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 10:44:28');
INSERT INTO `tb_access_log` VALUES (597, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 10:44:28');
INSERT INTO `tb_access_log` VALUES (598, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 10:44:28');
INSERT INTO `tb_access_log` VALUES (599, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 10:44:28');
INSERT INTO `tb_access_log` VALUES (600, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 10:44:56');
INSERT INTO `tb_access_log` VALUES (601, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 10:44:56');
INSERT INTO `tb_access_log` VALUES (602, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 10:44:58');
INSERT INTO `tb_access_log` VALUES (603, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 10:46:03');
INSERT INTO `tb_access_log` VALUES (604, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 10:46:03');
INSERT INTO `tb_access_log` VALUES (605, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 10:46:04');
INSERT INTO `tb_access_log` VALUES (606, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 10:46:28');
INSERT INTO `tb_access_log` VALUES (607, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 10:46:28');
INSERT INTO `tb_access_log` VALUES (608, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 10:46:28');
INSERT INTO `tb_access_log` VALUES (609, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 10:46:39');
INSERT INTO `tb_access_log` VALUES (610, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 10:46:39');
INSERT INTO `tb_access_log` VALUES (611, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 10:46:41');
INSERT INTO `tb_access_log` VALUES (612, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 10:47:06');
INSERT INTO `tb_access_log` VALUES (613, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 10:47:06');
INSERT INTO `tb_access_log` VALUES (614, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 10:47:06');
INSERT INTO `tb_access_log` VALUES (615, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 10:47:17');
INSERT INTO `tb_access_log` VALUES (616, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 10:47:17');
INSERT INTO `tb_access_log` VALUES (617, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 10:47:18');
INSERT INTO `tb_access_log` VALUES (618, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 10:48:13');
INSERT INTO `tb_access_log` VALUES (619, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 10:48:14');
INSERT INTO `tb_access_log` VALUES (620, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 10:48:14');
INSERT INTO `tb_access_log` VALUES (621, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 10:48:23');
INSERT INTO `tb_access_log` VALUES (622, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 10:48:23');
INSERT INTO `tb_access_log` VALUES (623, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 10:48:25');
INSERT INTO `tb_access_log` VALUES (624, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 10:48:55');
INSERT INTO `tb_access_log` VALUES (625, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 10:48:55');
INSERT INTO `tb_access_log` VALUES (626, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 10:48:56');
INSERT INTO `tb_access_log` VALUES (627, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 10:49:06');
INSERT INTO `tb_access_log` VALUES (628, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 10:49:06');
INSERT INTO `tb_access_log` VALUES (629, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 10:49:08');
INSERT INTO `tb_access_log` VALUES (630, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 10:49:19');
INSERT INTO `tb_access_log` VALUES (631, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 10:49:19');
INSERT INTO `tb_access_log` VALUES (632, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 10:49:19');
INSERT INTO `tb_access_log` VALUES (633, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 10:49:31');
INSERT INTO `tb_access_log` VALUES (634, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 10:49:31');
INSERT INTO `tb_access_log` VALUES (635, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 10:49:33');
INSERT INTO `tb_access_log` VALUES (636, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 10:50:39');
INSERT INTO `tb_access_log` VALUES (637, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 10:50:39');
INSERT INTO `tb_access_log` VALUES (638, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 10:50:39');
INSERT INTO `tb_access_log` VALUES (639, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 10:50:57');
INSERT INTO `tb_access_log` VALUES (640, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 10:50:57');
INSERT INTO `tb_access_log` VALUES (641, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 10:51:00');
INSERT INTO `tb_access_log` VALUES (642, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 11:24:39');
INSERT INTO `tb_access_log` VALUES (643, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 11:24:39');
INSERT INTO `tb_access_log` VALUES (644, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 11:24:41');
INSERT INTO `tb_access_log` VALUES (645, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 11:28:22');
INSERT INTO `tb_access_log` VALUES (646, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 11:28:22');
INSERT INTO `tb_access_log` VALUES (647, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 11:28:23');
INSERT INTO `tb_access_log` VALUES (648, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 11:28:40');
INSERT INTO `tb_access_log` VALUES (649, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 11:28:40');
INSERT INTO `tb_access_log` VALUES (650, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 11:28:41');
INSERT INTO `tb_access_log` VALUES (651, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 11:29:29');
INSERT INTO `tb_access_log` VALUES (652, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 11:29:29');
INSERT INTO `tb_access_log` VALUES (653, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 11:29:29');
INSERT INTO `tb_access_log` VALUES (654, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 11:29:29');
INSERT INTO `tb_access_log` VALUES (655, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 11:29:31');
INSERT INTO `tb_access_log` VALUES (656, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 11:29:31');
INSERT INTO `tb_access_log` VALUES (657, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 11:29:37');
INSERT INTO `tb_access_log` VALUES (658, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 11:29:37');
INSERT INTO `tb_access_log` VALUES (659, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 11:29:37');
INSERT INTO `tb_access_log` VALUES (660, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 11:29:37');
INSERT INTO `tb_access_log` VALUES (661, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 11:29:38');
INSERT INTO `tb_access_log` VALUES (662, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 11:29:38');
INSERT INTO `tb_access_log` VALUES (663, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 11:29:40');
INSERT INTO `tb_access_log` VALUES (664, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 11:29:40');
INSERT INTO `tb_access_log` VALUES (665, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 11:29:40');
INSERT INTO `tb_access_log` VALUES (666, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 11:29:53');
INSERT INTO `tb_access_log` VALUES (667, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 11:29:53');
INSERT INTO `tb_access_log` VALUES (668, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 11:29:55');
INSERT INTO `tb_access_log` VALUES (669, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 11:31:05');
INSERT INTO `tb_access_log` VALUES (670, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 11:31:05');
INSERT INTO `tb_access_log` VALUES (671, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 11:31:07');
INSERT INTO `tb_access_log` VALUES (672, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 11:31:36');
INSERT INTO `tb_access_log` VALUES (673, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 11:31:36');
INSERT INTO `tb_access_log` VALUES (674, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 11:31:37');
INSERT INTO `tb_access_log` VALUES (675, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 11:33:06');
INSERT INTO `tb_access_log` VALUES (676, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 11:33:06');
INSERT INTO `tb_access_log` VALUES (677, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 11:33:08');
INSERT INTO `tb_access_log` VALUES (678, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 11:33:15');
INSERT INTO `tb_access_log` VALUES (679, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 11:33:15');
INSERT INTO `tb_access_log` VALUES (680, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 11:33:21');
INSERT INTO `tb_access_log` VALUES (681, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 11:33:21');
INSERT INTO `tb_access_log` VALUES (682, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 11:33:23');
INSERT INTO `tb_access_log` VALUES (683, 8, '/api/platform/selectRegionTreeList', '171.8.60.190', '访问小程序', '2024-04-17 13:51:21');
INSERT INTO `tb_access_log` VALUES (684, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 13:51:22');
INSERT INTO `tb_access_log` VALUES (685, 8, '/api/platform/getInformationList', '171.8.60.190', '访问小程序', '2024-04-17 13:51:31');
INSERT INTO `tb_access_log` VALUES (686, 8, '/api/platform/getNoticeList', '171.8.60.190', '访问小程序', '2024-04-17 13:51:31');
INSERT INTO `tb_access_log` VALUES (687, 9, '/api/member/memberUserRegister', '171.8.60.190', '用户注册', '2024-04-17 13:51:37');
INSERT INTO `tb_access_log` VALUES (688, 9, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 13:51:37');
INSERT INTO `tb_access_log` VALUES (689, 9, '/api/platform/selectRegionTreeList', '171.8.60.190', '访问小程序', '2024-04-17 13:51:48');
INSERT INTO `tb_access_log` VALUES (690, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 13:51:49');
INSERT INTO `tb_access_log` VALUES (691, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 13:51:50');
INSERT INTO `tb_access_log` VALUES (692, 9, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 13:54:17');
INSERT INTO `tb_access_log` VALUES (693, 9, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 13:54:17');
INSERT INTO `tb_access_log` VALUES (694, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 13:54:17');
INSERT INTO `tb_access_log` VALUES (695, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 13:56:13');
INSERT INTO `tb_access_log` VALUES (696, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 13:56:13');
INSERT INTO `tb_access_log` VALUES (697, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 13:56:15');
INSERT INTO `tb_access_log` VALUES (698, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 13:56:32');
INSERT INTO `tb_access_log` VALUES (699, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 13:56:32');
INSERT INTO `tb_access_log` VALUES (700, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 13:56:36');
INSERT INTO `tb_access_log` VALUES (701, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 13:56:45');
INSERT INTO `tb_access_log` VALUES (702, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 13:56:45');
INSERT INTO `tb_access_log` VALUES (703, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 13:56:48');
INSERT INTO `tb_access_log` VALUES (704, 8, '/api/platform/selectRegionTreeList', '171.8.60.190', '访问小程序', '2024-04-17 13:57:08');
INSERT INTO `tb_access_log` VALUES (705, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 13:57:08');
INSERT INTO `tb_access_log` VALUES (706, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 13:57:41');
INSERT INTO `tb_access_log` VALUES (707, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 13:57:41');
INSERT INTO `tb_access_log` VALUES (708, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 13:57:42');
INSERT INTO `tb_access_log` VALUES (709, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 13:57:42');
INSERT INTO `tb_access_log` VALUES (710, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 13:57:56');
INSERT INTO `tb_access_log` VALUES (711, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 13:57:57');
INSERT INTO `tb_access_log` VALUES (712, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 13:58:00');
INSERT INTO `tb_access_log` VALUES (713, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 13:58:00');
INSERT INTO `tb_access_log` VALUES (714, 9, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 14:02:11');
INSERT INTO `tb_access_log` VALUES (715, 9, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 14:02:11');
INSERT INTO `tb_access_log` VALUES (716, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:02:11');
INSERT INTO `tb_access_log` VALUES (717, 8, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 14:02:57');
INSERT INTO `tb_access_log` VALUES (718, 8, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 14:02:57');
INSERT INTO `tb_access_log` VALUES (719, 8, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 14:06:22');
INSERT INTO `tb_access_log` VALUES (720, 8, '/api/platform/getInformationList', '171.8.60.190', '访问小程序', '2024-04-17 14:06:25');
INSERT INTO `tb_access_log` VALUES (721, 8, '/api/platform/getNoticeList', '171.8.60.190', '访问小程序', '2024-04-17 14:06:25');
INSERT INTO `tb_access_log` VALUES (722, 9, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 14:07:04');
INSERT INTO `tb_access_log` VALUES (723, 9, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 14:07:04');
INSERT INTO `tb_access_log` VALUES (724, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:07:04');
INSERT INTO `tb_access_log` VALUES (725, 9, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 14:07:19');
INSERT INTO `tb_access_log` VALUES (726, 9, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 14:07:19');
INSERT INTO `tb_access_log` VALUES (727, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:07:20');
INSERT INTO `tb_access_log` VALUES (728, 9, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 14:07:54');
INSERT INTO `tb_access_log` VALUES (729, 9, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 14:07:54');
INSERT INTO `tb_access_log` VALUES (730, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:07:54');
INSERT INTO `tb_access_log` VALUES (731, 9, '/api/platform/selectRegionTreeList', '171.8.60.190', '访问小程序', '2024-04-17 14:08:01');
INSERT INTO `tb_access_log` VALUES (732, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:08:01');
INSERT INTO `tb_access_log` VALUES (733, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 14:08:10');
INSERT INTO `tb_access_log` VALUES (734, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 14:08:10');
INSERT INTO `tb_access_log` VALUES (735, 9, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 14:08:11');
INSERT INTO `tb_access_log` VALUES (736, 9, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 14:08:11');
INSERT INTO `tb_access_log` VALUES (737, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:08:12');
INSERT INTO `tb_access_log` VALUES (738, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:08:12');
INSERT INTO `tb_access_log` VALUES (739, 9, '/api/museum/getMuseumListByClassId', '171.8.60.190', '访问小程序', '2024-04-17 14:08:16');
INSERT INTO `tb_access_log` VALUES (740, 8, '/api/platform/selectRegionTreeList', '171.8.60.190', '访问小程序', '2024-04-17 14:08:16');
INSERT INTO `tb_access_log` VALUES (741, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:08:16');
INSERT INTO `tb_access_log` VALUES (742, 9, '/api/museum/getMuseumDetail', '171.8.60.190', '访问小程序', '2024-04-17 14:08:17');
INSERT INTO `tb_access_log` VALUES (743, 9, '/api/museum/getMuseumListByClassId', '171.8.60.190', '访问小程序', '2024-04-17 14:08:20');
INSERT INTO `tb_access_log` VALUES (744, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:08:26');
INSERT INTO `tb_access_log` VALUES (745, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:08:27');
INSERT INTO `tb_access_log` VALUES (746, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:08:27');
INSERT INTO `tb_access_log` VALUES (747, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:08:27');
INSERT INTO `tb_access_log` VALUES (748, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:08:30');
INSERT INTO `tb_access_log` VALUES (749, 9, '/api/museum/getMuseumListByClassId', '171.8.60.190', '访问小程序', '2024-04-17 14:08:30');
INSERT INTO `tb_access_log` VALUES (750, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:08:31');
INSERT INTO `tb_access_log` VALUES (751, 9, '/api/platform/getInformationList', '171.8.60.190', '访问小程序', '2024-04-17 14:08:40');
INSERT INTO `tb_access_log` VALUES (752, 9, '/api/platform/getNoticeList', '171.8.60.190', '访问小程序', '2024-04-17 14:08:40');
INSERT INTO `tb_access_log` VALUES (753, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:08:51');
INSERT INTO `tb_access_log` VALUES (754, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:08:52');
INSERT INTO `tb_access_log` VALUES (755, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:08:54');
INSERT INTO `tb_access_log` VALUES (756, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:08:55');
INSERT INTO `tb_access_log` VALUES (757, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:08:56');
INSERT INTO `tb_access_log` VALUES (758, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:08:56');
INSERT INTO `tb_access_log` VALUES (759, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:09:02');
INSERT INTO `tb_access_log` VALUES (760, 9, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 14:09:03');
INSERT INTO `tb_access_log` VALUES (761, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:09:03');
INSERT INTO `tb_access_log` VALUES (762, 9, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 14:09:04');
INSERT INTO `tb_access_log` VALUES (763, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:09:04');
INSERT INTO `tb_access_log` VALUES (764, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:09:04');
INSERT INTO `tb_access_log` VALUES (765, 9, '/api/platform/selectRegionTreeList', '171.8.60.190', '访问小程序', '2024-04-17 14:09:05');
INSERT INTO `tb_access_log` VALUES (766, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:09:05');
INSERT INTO `tb_access_log` VALUES (767, 9, '/api/platform/getInformationList', '171.8.60.190', '访问小程序', '2024-04-17 14:09:05');
INSERT INTO `tb_access_log` VALUES (768, 9, '/api/platform/getNoticeList', '171.8.60.190', '访问小程序', '2024-04-17 14:09:05');
INSERT INTO `tb_access_log` VALUES (769, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:09:11');
INSERT INTO `tb_access_log` VALUES (770, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:09:11');
INSERT INTO `tb_access_log` VALUES (771, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:09:12');
INSERT INTO `tb_access_log` VALUES (772, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:09:14');
INSERT INTO `tb_access_log` VALUES (773, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:09:15');
INSERT INTO `tb_access_log` VALUES (774, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:09:18');
INSERT INTO `tb_access_log` VALUES (775, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:09:20');
INSERT INTO `tb_access_log` VALUES (776, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:09:21');
INSERT INTO `tb_access_log` VALUES (777, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:09:23');
INSERT INTO `tb_access_log` VALUES (778, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 14:11:12');
INSERT INTO `tb_access_log` VALUES (779, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 14:11:12');
INSERT INTO `tb_access_log` VALUES (780, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:11:14');
INSERT INTO `tb_access_log` VALUES (781, 8, '/api/platform/selectRegionTreeList', '171.8.60.190', '访问小程序', '2024-04-17 14:11:19');
INSERT INTO `tb_access_log` VALUES (782, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:11:19');
INSERT INTO `tb_access_log` VALUES (783, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:11:25');
INSERT INTO `tb_access_log` VALUES (784, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:11:28');
INSERT INTO `tb_access_log` VALUES (785, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:11:30');
INSERT INTO `tb_access_log` VALUES (786, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:11:32');
INSERT INTO `tb_access_log` VALUES (787, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:11:35');
INSERT INTO `tb_access_log` VALUES (788, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:11:54');
INSERT INTO `tb_access_log` VALUES (789, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:11:55');
INSERT INTO `tb_access_log` VALUES (790, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:11:55');
INSERT INTO `tb_access_log` VALUES (791, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:11:58');
INSERT INTO `tb_access_log` VALUES (792, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:12:00');
INSERT INTO `tb_access_log` VALUES (793, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:12:02');
INSERT INTO `tb_access_log` VALUES (794, 9, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 14:12:23');
INSERT INTO `tb_access_log` VALUES (795, 9, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 14:12:23');
INSERT INTO `tb_access_log` VALUES (796, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:12:23');
INSERT INTO `tb_access_log` VALUES (797, 9, '/api/platform/getInformationList', '171.8.60.190', '访问小程序', '2024-04-17 14:12:26');
INSERT INTO `tb_access_log` VALUES (798, 9, '/api/platform/getNoticeList', '171.8.60.190', '访问小程序', '2024-04-17 14:12:26');
INSERT INTO `tb_access_log` VALUES (799, 9, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 14:13:10');
INSERT INTO `tb_access_log` VALUES (800, 9, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 14:13:10');
INSERT INTO `tb_access_log` VALUES (801, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:13:10');
INSERT INTO `tb_access_log` VALUES (802, 9, '/api/platform/getInformationList', '171.8.60.190', '访问小程序', '2024-04-17 14:13:11');
INSERT INTO `tb_access_log` VALUES (803, 9, '/api/platform/getNoticeList', '171.8.60.190', '访问小程序', '2024-04-17 14:13:11');
INSERT INTO `tb_access_log` VALUES (804, 9, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 14:13:24');
INSERT INTO `tb_access_log` VALUES (805, 9, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 14:13:24');
INSERT INTO `tb_access_log` VALUES (806, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:13:29');
INSERT INTO `tb_access_log` VALUES (807, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 14:13:59');
INSERT INTO `tb_access_log` VALUES (808, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 14:13:59');
INSERT INTO `tb_access_log` VALUES (809, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:14:00');
INSERT INTO `tb_access_log` VALUES (810, 8, '/api/platform/selectRegionTreeList', '171.8.60.190', '访问小程序', '2024-04-17 14:14:05');
INSERT INTO `tb_access_log` VALUES (811, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:14:05');
INSERT INTO `tb_access_log` VALUES (812, 9, '/api/museum/getMuseumListByClassId', '171.8.60.190', '访问小程序', '2024-04-17 14:14:59');
INSERT INTO `tb_access_log` VALUES (813, 9, '/api/platform/selectRegionTreeList', '171.8.60.190', '访问小程序', '2024-04-17 14:15:02');
INSERT INTO `tb_access_log` VALUES (814, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:15:02');
INSERT INTO `tb_access_log` VALUES (815, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:15:07');
INSERT INTO `tb_access_log` VALUES (816, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:15:10');
INSERT INTO `tb_access_log` VALUES (817, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:15:12');
INSERT INTO `tb_access_log` VALUES (818, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:15:20');
INSERT INTO `tb_access_log` VALUES (819, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:15:20');
INSERT INTO `tb_access_log` VALUES (820, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:15:23');
INSERT INTO `tb_access_log` VALUES (821, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:15:23');
INSERT INTO `tb_access_log` VALUES (822, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:15:24');
INSERT INTO `tb_access_log` VALUES (823, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:15:26');
INSERT INTO `tb_access_log` VALUES (824, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:15:28');
INSERT INTO `tb_access_log` VALUES (825, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:15:28');
INSERT INTO `tb_access_log` VALUES (826, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:15:29');
INSERT INTO `tb_access_log` VALUES (827, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:15:37');
INSERT INTO `tb_access_log` VALUES (828, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:15:37');
INSERT INTO `tb_access_log` VALUES (829, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:15:44');
INSERT INTO `tb_access_log` VALUES (830, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:15:49');
INSERT INTO `tb_access_log` VALUES (831, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:15:50');
INSERT INTO `tb_access_log` VALUES (832, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:16:02');
INSERT INTO `tb_access_log` VALUES (833, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:16:04');
INSERT INTO `tb_access_log` VALUES (834, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:16:05');
INSERT INTO `tb_access_log` VALUES (835, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:16:10');
INSERT INTO `tb_access_log` VALUES (836, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:16:11');
INSERT INTO `tb_access_log` VALUES (837, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:16:13');
INSERT INTO `tb_access_log` VALUES (838, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:16:17');
INSERT INTO `tb_access_log` VALUES (839, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:16:17');
INSERT INTO `tb_access_log` VALUES (840, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:16:17');
INSERT INTO `tb_access_log` VALUES (841, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:16:17');
INSERT INTO `tb_access_log` VALUES (842, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:16:19');
INSERT INTO `tb_access_log` VALUES (843, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:16:26');
INSERT INTO `tb_access_log` VALUES (844, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:16:28');
INSERT INTO `tb_access_log` VALUES (845, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:16:30');
INSERT INTO `tb_access_log` VALUES (846, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:16:31');
INSERT INTO `tb_access_log` VALUES (847, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:16:32');
INSERT INTO `tb_access_log` VALUES (848, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:16:32');
INSERT INTO `tb_access_log` VALUES (849, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:16:34');
INSERT INTO `tb_access_log` VALUES (850, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:16:34');
INSERT INTO `tb_access_log` VALUES (851, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:16:34');
INSERT INTO `tb_access_log` VALUES (852, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:16:35');
INSERT INTO `tb_access_log` VALUES (853, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:16:38');
INSERT INTO `tb_access_log` VALUES (854, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:16:40');
INSERT INTO `tb_access_log` VALUES (855, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:16:40');
INSERT INTO `tb_access_log` VALUES (856, 9, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 14:17:13');
INSERT INTO `tb_access_log` VALUES (857, 9, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 14:17:13');
INSERT INTO `tb_access_log` VALUES (858, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:17:13');
INSERT INTO `tb_access_log` VALUES (859, 9, '/api/platform/selectRegionTreeList', '171.8.60.190', '访问小程序', '2024-04-17 14:19:09');
INSERT INTO `tb_access_log` VALUES (860, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:19:10');
INSERT INTO `tb_access_log` VALUES (861, 9, '/api/platform/getInformationList', '171.8.60.190', '访问小程序', '2024-04-17 14:19:10');
INSERT INTO `tb_access_log` VALUES (862, 9, '/api/platform/getNoticeList', '171.8.60.190', '访问小程序', '2024-04-17 14:19:10');
INSERT INTO `tb_access_log` VALUES (863, 9, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 14:19:12');
INSERT INTO `tb_access_log` VALUES (864, 9, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 14:19:12');
INSERT INTO `tb_access_log` VALUES (865, 9, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 14:19:15');
INSERT INTO `tb_access_log` VALUES (866, 9, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 14:19:20');
INSERT INTO `tb_access_log` VALUES (867, 9, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 14:19:59');
INSERT INTO `tb_access_log` VALUES (868, 9, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 14:20:02');
INSERT INTO `tb_access_log` VALUES (869, 9, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 14:20:13');
INSERT INTO `tb_access_log` VALUES (870, 9, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 14:20:14');
INSERT INTO `tb_access_log` VALUES (871, 9, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 14:20:15');
INSERT INTO `tb_access_log` VALUES (872, 9, '/api/platform/selectRuleByType', '171.8.60.190', '访问小程序', '2024-04-17 14:22:54');
INSERT INTO `tb_access_log` VALUES (873, 9, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 14:22:56');
INSERT INTO `tb_access_log` VALUES (874, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:23:00');
INSERT INTO `tb_access_log` VALUES (875, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 14:25:14');
INSERT INTO `tb_access_log` VALUES (876, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 14:25:14');
INSERT INTO `tb_access_log` VALUES (877, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:25:15');
INSERT INTO `tb_access_log` VALUES (878, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 14:26:39');
INSERT INTO `tb_access_log` VALUES (879, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 14:26:39');
INSERT INTO `tb_access_log` VALUES (880, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:26:41');
INSERT INTO `tb_access_log` VALUES (881, 8, '/api/platform/selectRegionTreeList', '171.8.60.190', '访问小程序', '2024-04-17 14:26:47');
INSERT INTO `tb_access_log` VALUES (882, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:26:47');
INSERT INTO `tb_access_log` VALUES (883, 9, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 14:26:50');
INSERT INTO `tb_access_log` VALUES (884, 9, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 14:26:50');
INSERT INTO `tb_access_log` VALUES (885, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:26:50');
INSERT INTO `tb_access_log` VALUES (886, 9, '/api/platform/selectRegionTreeList', '171.8.60.190', '访问小程序', '2024-04-17 14:26:56');
INSERT INTO `tb_access_log` VALUES (887, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:26:56');
INSERT INTO `tb_access_log` VALUES (888, 9, '/api/platform/getInformationList', '171.8.60.190', '访问小程序', '2024-04-17 14:27:07');
INSERT INTO `tb_access_log` VALUES (889, 9, '/api/platform/getNoticeList', '171.8.60.190', '访问小程序', '2024-04-17 14:27:07');
INSERT INTO `tb_access_log` VALUES (890, 9, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 14:27:11');
INSERT INTO `tb_access_log` VALUES (891, 9, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 14:27:11');
INSERT INTO `tb_access_log` VALUES (892, 7, '/api/member/memberUserLogin', '171.8.60.190', '用户登录', '2024-04-17 14:27:18');
INSERT INTO `tb_access_log` VALUES (893, 7, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 14:27:18');
INSERT INTO `tb_access_log` VALUES (894, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 14:27:19');
INSERT INTO `tb_access_log` VALUES (895, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 14:27:19');
INSERT INTO `tb_access_log` VALUES (896, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:27:21');
INSERT INTO `tb_access_log` VALUES (897, 8, '/api/platform/selectRegionTreeList', '171.8.60.190', '访问小程序', '2024-04-17 14:27:28');
INSERT INTO `tb_access_log` VALUES (898, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:27:28');
INSERT INTO `tb_access_log` VALUES (899, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 14:28:00');
INSERT INTO `tb_access_log` VALUES (900, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 14:28:00');
INSERT INTO `tb_access_log` VALUES (901, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:28:01');
INSERT INTO `tb_access_log` VALUES (902, 8, '/api/platform/selectRegionTreeList', '171.8.60.190', '访问小程序', '2024-04-17 14:28:21');
INSERT INTO `tb_access_log` VALUES (903, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:28:21');
INSERT INTO `tb_access_log` VALUES (904, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:28:47');
INSERT INTO `tb_access_log` VALUES (905, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:28:47');
INSERT INTO `tb_access_log` VALUES (906, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:28:48');
INSERT INTO `tb_access_log` VALUES (907, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:28:48');
INSERT INTO `tb_access_log` VALUES (908, 7, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 14:28:51');
INSERT INTO `tb_access_log` VALUES (909, 9, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:28:52');
INSERT INTO `tb_access_log` VALUES (910, 9, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 14:28:54');
INSERT INTO `tb_access_log` VALUES (911, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 14:30:02');
INSERT INTO `tb_access_log` VALUES (912, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 14:30:02');
INSERT INTO `tb_access_log` VALUES (913, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:30:03');
INSERT INTO `tb_access_log` VALUES (914, 8, '/api/platform/selectRegionTreeList', '171.8.60.190', '访问小程序', '2024-04-17 14:30:09');
INSERT INTO `tb_access_log` VALUES (915, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:30:10');
INSERT INTO `tb_access_log` VALUES (916, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 14:30:58');
INSERT INTO `tb_access_log` VALUES (917, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 14:30:58');
INSERT INTO `tb_access_log` VALUES (918, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:30:59');
INSERT INTO `tb_access_log` VALUES (919, 8, '/api/platform/selectRegionTreeList', '171.8.60.190', '访问小程序', '2024-04-17 14:31:05');
INSERT INTO `tb_access_log` VALUES (920, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:31:05');
INSERT INTO `tb_access_log` VALUES (921, 7, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 14:35:42');
INSERT INTO `tb_access_log` VALUES (922, 7, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 14:35:42');
INSERT INTO `tb_access_log` VALUES (923, 7, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:35:43');
INSERT INTO `tb_access_log` VALUES (924, 7, '/api/platform/selectRegionTreeList', '171.8.60.190', '访问小程序', '2024-04-17 14:35:43');
INSERT INTO `tb_access_log` VALUES (925, 7, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:35:43');
INSERT INTO `tb_access_log` VALUES (926, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 14:36:57');
INSERT INTO `tb_access_log` VALUES (927, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 14:36:57');
INSERT INTO `tb_access_log` VALUES (928, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:37:02');
INSERT INTO `tb_access_log` VALUES (929, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 14:44:10');
INSERT INTO `tb_access_log` VALUES (930, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 14:44:10');
INSERT INTO `tb_access_log` VALUES (931, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:44:13');
INSERT INTO `tb_access_log` VALUES (932, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 14:52:08');
INSERT INTO `tb_access_log` VALUES (933, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 14:52:08');
INSERT INTO `tb_access_log` VALUES (934, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:52:09');
INSERT INTO `tb_access_log` VALUES (935, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 14:52:44');
INSERT INTO `tb_access_log` VALUES (936, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 14:52:44');
INSERT INTO `tb_access_log` VALUES (937, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:52:46');
INSERT INTO `tb_access_log` VALUES (938, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 14:53:17');
INSERT INTO `tb_access_log` VALUES (939, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 14:53:17');
INSERT INTO `tb_access_log` VALUES (940, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:53:19');
INSERT INTO `tb_access_log` VALUES (941, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 14:56:14');
INSERT INTO `tb_access_log` VALUES (942, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 14:56:14');
INSERT INTO `tb_access_log` VALUES (943, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 14:56:16');
INSERT INTO `tb_access_log` VALUES (944, 8, '/api/platform/selectRegionTreeList', '171.8.60.190', '访问小程序', '2024-04-17 15:02:25');
INSERT INTO `tb_access_log` VALUES (945, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 15:02:26');
INSERT INTO `tb_access_log` VALUES (946, 8, '/api/platform/getInformationList', '171.8.60.190', '访问小程序', '2024-04-17 15:51:00');
INSERT INTO `tb_access_log` VALUES (947, 8, '/api/platform/getNoticeList', '171.8.60.190', '访问小程序', '2024-04-17 15:51:00');
INSERT INTO `tb_access_log` VALUES (948, 8, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 15:51:04');
INSERT INTO `tb_access_log` VALUES (949, 8, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 15:51:04');
INSERT INTO `tb_access_log` VALUES (950, 8, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 15:51:07');
INSERT INTO `tb_access_log` VALUES (951, 8, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 15:51:20');
INSERT INTO `tb_access_log` VALUES (952, 8, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 15:51:26');
INSERT INTO `tb_access_log` VALUES (953, 8, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 16:21:02');
INSERT INTO `tb_access_log` VALUES (954, 8, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 16:21:02');
INSERT INTO `tb_access_log` VALUES (955, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 16:23:50');
INSERT INTO `tb_access_log` VALUES (956, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 16:23:50');
INSERT INTO `tb_access_log` VALUES (957, 8, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 16:23:56');
INSERT INTO `tb_access_log` VALUES (958, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 16:23:56');
INSERT INTO `tb_access_log` VALUES (959, 8, '/api/member/getMemberUserInfo', '171.8.60.190', '访问小程序', '2024-04-17 16:23:56');
INSERT INTO `tb_access_log` VALUES (960, 8, '/api/platform/getBannerList', '171.8.60.190', '访问小程序', '2024-04-17 16:35:15');
INSERT INTO `tb_access_log` VALUES (961, 8, '/api/museum/getMuseumClassList', '171.8.60.190', '访问小程序', '2024-04-17 16:35:15');
INSERT INTO `tb_access_log` VALUES (962, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 16:35:18');
INSERT INTO `tb_access_log` VALUES (963, 8, '/api/platform/selectRegionTreeList', '171.8.60.190', '访问小程序', '2024-04-17 16:42:08');
INSERT INTO `tb_access_log` VALUES (964, 8, '/api/museum/getMuseumListByPage', '171.8.60.190', '访问小程序', '2024-04-17 16:42:09');
-- ----------------------------
-- Table structure for tb_banner
-- ----------------------------
DROP TABLE IF EXISTS `tb_banner`;
CREATE TABLE `tb_banner` (
`banner_id` bigint NOT NULL AUTO_INCREMENT COMMENT '轮播图ID',
`banner_title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '轮播图标题',
`banner_jump` int NULL DEFAULT NULL COMMENT '轮播图跳转类型(0-不跳转,1-最新展讯,2-活动公告,3-博物馆信息)',
`jump_res_id` bigint NULL DEFAULT NULL COMMENT '跳转资源ID',
`banner_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '轮播图链接',
`sort` int NULL DEFAULT NULL COMMENT '排序',
`status` int NULL DEFAULT NULL COMMENT '状态(0-显示,1-隐藏)',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`delete_time` datetime(0) NULL DEFAULT NULL COMMENT '删除时间',
`create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '创建者',
`update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '更新者',
`delete_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '删除者',
`del_flag` int NULL DEFAULT NULL COMMENT '删除标记(0-正常,1-删除)',
PRIMARY KEY (`banner_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '轮播图管理' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tb_banner
-- ----------------------------
INSERT INTO `tb_banner` VALUES (1, '海底世界(广东省博物馆)', 0, NULL, 'https://image.xnszz.com/2024/04/17/27be4883ac4e0ce663684f8b75005ea9_20240417140620A006.jpg', 1, 0, '2024-04-13 11:20:35', '2024-04-17 14:06:23', '2024-04-13 00:00:00', 'admin', 'admin', 'admin', 0);
INSERT INTO `tb_banner` VALUES (2, '重走丝绸路(南京博物馆)', 0, NULL, 'https://image.xnszz.com/2024/04/17/defd349a3ba362607308d38fdb6e0c52_20240417140748A009.jpg', 3, 0, '2024-04-13 11:57:48', '2024-04-17 14:07:50', NULL, 'admin', 'admin', NULL, 0);
INSERT INTO `tb_banner` VALUES (3, '璀璨波斯(故宫博物馆)', 0, NULL, 'https://image.xnszz.com/2024/04/17/75a85fb5832ba25bbbc9368eab3f0efb_20240417140634A007.jpg', 2, 0, '2024-04-13 12:08:06', '2024-04-17 14:06:40', NULL, 'admin', 'admin', NULL, 0);
-- ----------------------------
-- Table structure for tb_feedback
-- ----------------------------
DROP TABLE IF EXISTS `tb_feedback`;
CREATE TABLE `tb_feedback` (
`feedback_id` bigint NOT NULL AUTO_INCREMENT COMMENT '用户投诉ID',
`member_user_id` bigint NULL DEFAULT NULL COMMENT '用户ID',
`feedback_content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '投诉内容',
`feedback_image` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '投诉图片',
`status` int NULL DEFAULT NULL COMMENT '状态(0-未处理,1-已处理)',
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备注',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`delete_time` datetime(0) NULL DEFAULT NULL COMMENT '删除时间',
`create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '创建者',
`update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '更新者',
`delete_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '删除者',
`del_flag` int NULL DEFAULT NULL COMMENT '删除标记(0-正常,1-删除)',
PRIMARY KEY (`feedback_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 16 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '用户投诉' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tb_feedback
-- ----------------------------
-- ----------------------------
-- Table structure for tb_holiday
-- ----------------------------
DROP TABLE IF EXISTS `tb_holiday`;
CREATE TABLE `tb_holiday` (
`holiday_id` bigint NOT NULL AUTO_INCREMENT COMMENT '节假日ID',
`holiday_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '节假日名称',
`start_date` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '开始时间',
`end_date` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '结束时间',
`sort` int NULL DEFAULT NULL COMMENT '排序',
`status` int NULL DEFAULT NULL COMMENT '状态(0-显示,1-隐藏)',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`delete_time` datetime(0) NULL DEFAULT NULL COMMENT '删除时间',
`create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '创建者',
`update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '更新者',
`delete_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '删除者',
`del_flag` int NULL DEFAULT NULL COMMENT '删除标记(0-正常,1-删除)',
PRIMARY KEY (`holiday_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 8 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '节假日' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tb_holiday
-- ----------------------------
INSERT INTO `tb_holiday` VALUES (1, '元旦', '2023-12-30', '2024-01-01', 0, 0, '2024-04-14 22:22:06', '2024-04-15 20:57:13', NULL, 'admin', 'admin', NULL, 0);
INSERT INTO `tb_holiday` VALUES (2, '春节', '2024-02-10', '2024-02-17', 1, 0, '2024-04-14 22:22:12', '2024-04-15 20:57:49', NULL, 'admin', 'admin', NULL, 0);
INSERT INTO `tb_holiday` VALUES (3, '清明节', '2024-04-04', '2024-04-06', 2, 0, '2024-04-14 22:22:19', '2024-04-15 20:57:55', NULL, 'admin', 'admin', NULL, 0);
INSERT INTO `tb_holiday` VALUES (4, '劳动节', '2024-05-01', '2024-05-05', 3, 0, '2024-04-14 22:22:27', '2024-04-15 20:58:01', NULL, 'admin', 'admin', NULL, 0);
INSERT INTO `tb_holiday` VALUES (5, '端午节', '2024-06-08', '2024-06-10', 4, 0, '2024-04-14 22:22:35', '2024-04-15 20:58:13', NULL, 'admin', 'admin', NULL, 0);
INSERT INTO `tb_holiday` VALUES (6, '中秋节', '2024-09-15', '2024-09-17', 5, 0, '2024-04-14 22:22:42', '2024-04-15 20:58:25', NULL, 'admin', 'admin', NULL, 0);
INSERT INTO `tb_holiday` VALUES (7, '国庆节', '2024-10-01', '2024-10-07', 6, 0, '2024-04-14 22:22:48', '2024-04-15 20:58:37', NULL, 'admin', 'admin', NULL, 0);
-- ----------------------------
-- Table structure for tb_holiday_passenger
-- ----------------------------
DROP TABLE IF EXISTS `tb_holiday_passenger`;
CREATE TABLE `tb_holiday_passenger` (
`holiday_passenger_id` bigint NOT NULL AUTO_INCREMENT COMMENT '节假日客流统计ID',
`member_user_id` bigint NULL DEFAULT NULL COMMENT '上报用户ID',
`report_year` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '年份',
`holiday_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '节假日名称',
`holiday_date_start` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '节假日开始时间',
`holiday_date_end` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '节假日结束时间',
`museum_id` bigint NULL DEFAULT NULL COMMENT '博物馆ID',
`passenger_amount` int NULL DEFAULT NULL COMMENT '节假日客流量',
`report_date` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '上报时间',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`delete_time` datetime(0) NULL DEFAULT NULL COMMENT '删除时间',
`create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '创建者',
`update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '更新者',
`delete_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '删除者',
`del_flag` int NULL DEFAULT NULL COMMENT '删除标记(0-正常,1-删除)',
PRIMARY KEY (`holiday_passenger_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '节假日客流' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tb_holiday_passenger
-- ----------------------------
-- ----------------------------
-- Table structure for tb_information
-- ----------------------------
DROP TABLE IF EXISTS `tb_information`;
CREATE TABLE `tb_information` (
`information_id` bigint NOT NULL AUTO_INCREMENT COMMENT '资讯ID',
`information_title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '标题',
`information_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '展示图',
`information_intro` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '简介',
`museum_id` bigint NULL DEFAULT NULL COMMENT '博物馆ID',
`view_count` int NULL DEFAULT NULL COMMENT '浏览量',
`information_content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '资讯内容',
`status` int NULL DEFAULT NULL COMMENT '状态(0-显示,1-隐藏)',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`delete_time` datetime(0) NULL DEFAULT NULL COMMENT '删除时间',
`create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '创建者',
`update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '更新者',
`delete_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '删除者',
`del_flag` int NULL DEFAULT NULL COMMENT '删除标记(0-正常,1-删除)',
PRIMARY KEY (`information_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '最新资讯' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tb_information
-- ----------------------------
INSERT INTO `tb_information` VALUES (1, '何以中国', 'https://image.xnszz.com/2024/04/17/2d846461f47ce1a119208bee8cbfe360_20240417141241A013.jpg', '中华文明,是人类历史上唯一未曾中断的原生文明,具有强大的凝聚力.', 1, 7, 'wwww
', 0, '2024-04-13 14:21:21', '2024-04-17 14:12:44', '2024-04-13 00:00:00', 'admin', 'admin', 'admin', 0);
INSERT INTO `tb_information` VALUES (2, '世遗2周年|声音里的世遗盛夏', 'https://image.xnszz.com/2024/04/13/6e32ee4eb07c2a9a9f3a4aef946756a1_20240413142708A006.png', '传统戏剧的婉转悠扬,街艺表演的欢快悦动,交织成悦耳的泉州古城世…', 1, 3, NULL, 0, '2024-04-13 14:27:18', NULL, '2024-04-13 14:34:42', 'admin', NULL, 'admin', 0);
INSERT INTO `tb_information` VALUES (3, '咔擦咔擦!跟着“双遗“游西安!', 'https://image.xnszz.com/2024/04/17/1e91d4d5453afb319b56d762de2a7d3e_20240417141259A014.jpg', '这里有着6项世界级、36项国家级非物质文化遗产项目', 2, 4, '
', 0, '2024-04-13 14:27:54', '2024-04-17 14:13:03', '2024-04-13 00:00:00', 'admin', 'admin', 'admin', 0);
-- ----------------------------
-- Table structure for tb_member_user
-- ----------------------------
DROP TABLE IF EXISTS `tb_member_user`;
CREATE TABLE `tb_member_user` (
`member_user_id` bigint NOT NULL AUTO_INCREMENT COMMENT '用户ID',
`open_id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT 'openId',
`user_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '用户头像',
`user_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '用户名称',
`user_phone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '用户手机号',
`user_type` int NULL DEFAULT NULL COMMENT '用户类型(0-游客,1-工作人员)',
`museum_id` bigint NULL DEFAULT NULL COMMENT '所属博物馆',
`status` int NULL DEFAULT NULL COMMENT '状态(0-正常,1-冻结)',
`login_token` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '登录token',
`login_time` datetime(0) NULL DEFAULT NULL COMMENT '登录时间',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`delete_time` datetime(0) NULL DEFAULT NULL COMMENT '删除时间',
`create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '创建者',
`update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '更新者',
`delete_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '删除者',
`del_flag` int NULL DEFAULT NULL COMMENT '删除标记(0-正常,1-删除)',
PRIMARY KEY (`member_user_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 5 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '用户信息' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tb_member_user
-- ----------------------------
INSERT INTO `tb_member_user` VALUES (7, 'owDKw62ioYh8Lpq8RE3Bwdzm9DYo', 'https://image.xnszz.com/2024/04/16/6098aa849b0cb029031dd2544b2a4cef_20240416225245A003.png', '微信用户', '18595927131', 0, NULL, 0, '1780483152465235968', '2024-04-17 14:27:18', '2024-04-16 22:58:56', NULL, NULL, NULL, NULL, NULL, 0);
INSERT INTO `tb_member_user` VALUES (8, 'owDKw6yVvo5YIZ7ipsFLAVzxFm6w', 'https://image.xnszz.com/2024/04/16/6098aa849b0cb029031dd2544b2a4cef_20240416225245A003.png', '微信用户', '18538922656', 0, NULL, 0, '1780250524000587776', '2024-04-16 23:02:55', '2024-04-16 23:02:55', NULL, NULL, NULL, NULL, NULL, 0);
INSERT INTO `tb_member_user` VALUES (9, 'owDKw67-2qFuq6ACPjodWVKGsgRw', 'https://image.xnszz.com/2024/04/16/6098aa849b0cb029031dd2544b2a4cef_20240416225245A003.png', '微信用户', '19937197832', 0, NULL, 0, '1780474172418428928', '2024-04-17 13:51:37', '2024-04-17 13:51:37', NULL, NULL, NULL, NULL, NULL, 0);
-- ----------------------------
-- Table structure for tb_museum
-- ----------------------------
DROP TABLE IF EXISTS `tb_museum`;
CREATE TABLE `tb_museum` (
`museum_id` bigint NOT NULL AUTO_INCREMENT COMMENT '博物馆ID',
`serial_number` int NULL DEFAULT NULL COMMENT '序号',
`museum_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '博物馆名称',
`museum_class_id` bigint NULL DEFAULT NULL COMMENT '博物馆分类ID',
`province_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '省份名称',
`city_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '城市名称',
`address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '地址',
`longitude` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '经度',
`latitude` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '纬度',
`mechanism_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '所属机构',
`museum_grade` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '博物馆等级',
`collection_amount` int NULL DEFAULT NULL COMMENT '藏品总数',
`audience_amount` int NULL DEFAULT NULL COMMENT '年观众总数',
`precious_collection_amount` int NULL DEFAULT NULL COMMENT '珍贵藏品数',
`show_amount` int NULL DEFAULT NULL COMMENT '陈列展览数',
`museum_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '展示图',
`museum_banner` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '轮播图',
`museum_phone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '联系电话',
`museum_score` double(10, 1) NULL DEFAULT NULL COMMENT '博物馆评分',
`opening_start` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '营业开始时间',
`opening_end` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '营业结束时间',
`opening_week` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '营业日期',
`reservations_number` int NULL DEFAULT NULL COMMENT '当天预约人数',
`Remain_ticket` int NULL DEFAULT NULL COMMENT '剩余票数',
`crowd_degree` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '拥挤程度',
`museum_introduce` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '博物馆介绍 ',
`reservation_link` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '预约链接',
`status` int NULL DEFAULT NULL COMMENT '状态(0-展示,1-隐藏)',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`delete_time` datetime(0) NULL DEFAULT NULL COMMENT '删除时间',
`create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '创建者',
`update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '更新者',
`delete_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '删除者',
`del_flag` int NULL DEFAULT NULL COMMENT '删除标记(0-正常,1-删除)',
PRIMARY KEY (`museum_id`) USING BTREE,
INDEX `index_museum_class_id`(`museum_class_id`) USING BTREE,
INDEX `index_mechanism_name`(`mechanism_name`) USING BTREE,
INDEX `index_status`(`status`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1430 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '博物馆信息' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tb_museum
-- ----------------------------
INSERT INTO `tb_museum` VALUES (1, 0, '邯郸市博物馆', 1, '河北省', '邯郸市', '河北省邯郸市人民路399号', '114.523593', '36.609904', '文物系统国有博物馆', '一级', 9927, 136657, 252, 5, 'https://image.xnszz.com/2024/04/14/6f81d266572b465706aba01401bd52a8_20240414171524A001.jpg', 'https://image.xnszz.com/2024/04/14/6e32ee4eb07c2a9a9f3a4aef946756a1_20240414171530A002.png,https://image.xnszz.com/2024/04/14/d59a920bf37d92bf729331f24bb4907e_20240414171535A003.jpg', '18595927131', 4.8, '08:00', '19:00', '周一,周二,周三,周六,周日', 3566, 333, '拥挤', '
qweqwewqe
dq qd d
', 'https://www.baidu.com', 0, '2024-04-14 17:16:24', '2024-04-15 21:39:12', NULL, 'admin', 'admin', NULL, 0);
INSERT INTO `tb_museum` VALUES (1226, 1, '邯郸市博物馆', 3, '河北省', '邯郸市', '河北省邯郸市人民路399号', '114.523593', '36.609904', '文物系统国有博物馆', '一级', 9927, 136657, 252, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.5, '08:00', '19:00', '周三,周四,周五,周六,周日', 4293, 843, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:00', NULL, '2024-04-15 21:45:18', 'admin: import', NULL, 'admin', 1);
INSERT INTO `tb_museum` VALUES (1227, 2, '济南市博物馆', 3, '山东省', '济南市', '济南市经十一路30号', '117.02684', '36.645583', '文物系统国有博物馆', '一级', 76924, 313298, 2015, 4, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.3, '08:00', '19:00', '周三,周四,周五,周六,周日', 3683, 788, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:00', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1228, 3, '常州博物馆', 6, '江苏省', '常州市', '常州市龙城大道1288号', '119.971883', '31.808816', '文物系统国有博物馆', '一级', 33549, 1508229, 3443, 4, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.7, '08:00', '19:00', '周三,周四,周五,周六,周日', 3959, 872, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:00', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1229, 4, '中国茶叶博物馆', 5, '浙江省', '杭州市', '杭州市西湖区龙井路88号', '120.120767', '30.232175', '文物系统国有博物馆', '一级', 4321, 110841, 156, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.5, '08:00', '19:00', '周三,周四,周五,周六,周日', 3140, 996, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:00', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1230, 5, '大庆市博物馆', 3, '黑龙江省', '大庆市', '大庆市萨尔图区文苑街2号', '125.135269', '46.629281', '文物系统国有博物馆', '一级', 55041, 20842, 1602, 3, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.8, '08:00', '19:00', '周三,周四,周五,周六,周日', 4742, 872, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:01', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1231, 6, '吐鲁番市文博院', 5, '新疆维吾尔自治区', '吐鲁番市', '吐鲁番市高昌区木纳尔路1268号', '89.19158', '42.94267', '文物系统国有博物馆', '一级', 20637, 273000, 892, 6, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.9, '08:00', '19:00', '周三,周四,周五,周六,周日', 3499, 774, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:01', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1232, 7, '青海藏医药文化博物馆', 2, '青海省', '西宁市', '青海省西宁市城北区生物园区经二路36号', '101.747163', '36.698519', '其他行业国有博物馆', '一级', 60150, 44607, 2003, 13, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.1, '08:00', '19:00', '周三,周四,周五,周六,周日', 3794, 967, '舒适', NULL, NULL, 0, '2024-04-15 21:45:01', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1233, 8, '安徽博物院', 2, '安徽省', '合肥市', '合肥市庐阳区安庆路268号 合肥市蜀山区怀宁路87号 ', '117.22057', '31.80212', '文物系统国有博物馆', '一级', 317569, 770055, 63770, 9, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.4, '08:00', '19:00', '周三,周四,周五,周六,周日', 3544, 679, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:01', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1234, 9, '重庆红岩革命纪念馆(重庆红岩革命历史博物馆)', 4, '重庆市', '重庆市', '重庆市渝中区红岩村52号', '106.505789', '29.551904', '文物系统国有博物馆', '一级', 29071, 416776, 4009, 10, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.8, '08:00', '19:00', '周三,周四,周五,周六,周日', 3351, 665, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:01', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1235, 10, '敦煌研究院', 2, '甘肃省', '酒泉市', '甘肃省敦煌市莫高窟', '94.756875', '40.172505', '文物系统国有博物馆', '一级', 6158, 259272, 549, 4, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.8, '08:00', '19:00', '周三,周四,周五,周六,周日', 3775, 781, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:01', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1236, 11, '宁波中国港口博物馆', 2, '浙江省', '宁波市', '浙江省宁波市北仑区春晓街道港博路6号', '121.909549', '29.756117', '文物系统国有博物馆', '一级', 12557, 320596, 119, 8, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.4, '08:00', '19:00', '周三,周四,周五,周六,周日', 4392, 720, '舒适', NULL, NULL, 0, '2024-04-15 21:45:01', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1237, 12, '中国文字博物馆', 3, '河南省', '安阳市', '河南省安阳市北关区人民大道东段656号', '114.393702', '36.113683', '文物系统国有博物馆', '一级', 30257, 624520, 3688, 10, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.2, '08:00', '19:00', '周三,周四,周五,周六,周日', 4077, 574, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:01', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1238, 13, '长江文明馆(武汉自然博物馆)', 4, '湖北省', '武汉市', '湖北省武汉市东西湖区金南二路8号', '114.22609', '30.6314', '文物系统国有博物馆', '一级', 13920, 603249, 163, 2, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.3, '08:00', '19:00', '周三,周四,周五,周六,周日', 4342, 576, '舒适', NULL, NULL, 0, '2024-04-15 21:45:01', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1239, 14, '江西省庐山博物馆', 2, '江西省', '九江市', '庐山风景名胜区芦林一号', '115.977911', '29.550659', '文物系统国有博物馆', '一级', 5153, 560460, 1570, 6, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.7, '08:00', '19:00', '周三,周四,周五,周六,周日', 3774, 587, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:01', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1240, 15, '上海鲁迅纪念馆', 2, '上海市', '上海市', '上海市甜爱路200号', '121.483766', '31.269737', '文物系统国有博物馆', '一级', 88123, 301654, 23383, 1, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.3, '08:00', '19:00', '周三,周四,周五,周六,周日', 4691, 871, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:01', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1241, 16, '景德镇中国陶瓷博物馆', 2, '江西省', '景德镇市', '景德镇市紫晶北路1号', '117.175546', '29.293202', '文物系统国有博物馆', '一级', 52683, 516517, 1641, 2, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.2, '08:00', '19:00', '周三,周四,周五,周六,周日', 4728, 955, '舒适', NULL, NULL, 0, '2024-04-15 21:45:01', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1242, 17, '四川广汉三星堆博物馆', 2, '四川省', '德阳市', '广汉市向新路133号', '104.218307', '31.001404', '文物系统国有博物馆', '一级', 786, 855386, 786, 4, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.4, '08:00', '19:00', '周三,周四,周五,周六,周日', 3065, 947, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:01', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1243, 18, '重庆三峡移民纪念馆', 3, '重庆市', '重庆市', '重庆市万州区南滨大道1469号', '108.401789', '30.808878', '文物系统国有博物馆', '一级', 30204, 350273, 327, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.1, '08:00', '19:00', '周三,周四,周五,周六,周日', 3811, 975, '舒适', NULL, NULL, 0, '2024-04-15 21:45:01', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1244, 19, '沈阳“九·一八”历史博物馆', 5, '辽宁省', '沈阳市', '辽宁省沈阳市大东区望花南街46号', '123.46752', '41.83639', '文物系统国有博物馆', '一级', 16978, 551077, 255, 6, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.1, '08:00', '19:00', '周三,周四,周五,周六,周日', 4070, 779, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:01', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1245, 20, '大足石刻博物馆', 5, '重庆市', '重庆市', '重庆市大足区龙岗街道北山路7号', '105.71296', '29.70311', '文物系统国有博物馆', '一级', 820, 220000, 81, 1, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.9, '08:00', '19:00', '周三,周四,周五,周六,周日', 3525, 785, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:01', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1246, 21, '成都武侯祠博物馆', 6, '四川省', '成都市', '成都武侯祠大街231号', '104.0477', '30.64432', '文物系统国有博物馆', '一级', 23191, 3595600, 620, 20, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.8, '08:00', '19:00', '周三,周四,周五,周六,周日', 4991, 687, '舒适', NULL, NULL, 0, '2024-04-15 21:45:02', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1247, 22, '宝鸡青铜器博物院', 2, '陕西省', '宝鸡市', '宝鸡市滨河大道中华石鼓园', '107.193775', '34.348095', '文物系统国有博物馆', '一级', 486726, 385510, 3305, 4, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.9, '08:00', '19:00', '周三,周四,周五,周六,周日', 4107, 612, '舒适', NULL, NULL, 0, '2024-04-15 21:45:02', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1248, 23, '赤峰博物馆', 3, '内蒙古自治区', '赤峰市', '赤峰市松山区富河街10A', '118.900447', '42.247451', '文物系统国有博物馆', '一级', 83223, 45018, 1390, 4, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.8, '08:00', '19:00', '周三,周四,周五,周六,周日', 3029, 993, '舒适', NULL, NULL, 0, '2024-04-15 21:45:02', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1249, 24, '八大山人纪念馆', 3, '江西省', '南昌市', '南昌市青云谱区青云路259号', '115.919779', '28.599735', '文物系统国有博物馆', '一级', 1685, 462343, 26, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.8, '08:00', '19:00', '周三,周四,周五,周六,周日', 3495, 772, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:02', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1250, 25, '广东中国客家博物馆', 5, '广东省', '梅州市', '广东省梅州市梅江区东山大道2号', '116.132083', '24.310224', '文物系统国有博物馆', '一级', 28356, 85157, 229, 8, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.7, '08:00', '19:00', '周三,周四,周五,周六,周日', 3356, 656, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:02', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1251, 26, '杭州博物馆', 6, '浙江省', '杭州市', '浙江杭州上城区粮道山18号', '120.16648', '30.238883', '文物系统国有博物馆', '一级', 24602, 586231, 3668, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.5, '08:00', '19:00', '周三,周四,周五,周六,周日', 3187, 669, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:02', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1252, 27, '北京天文馆', 3, '北京市', '北京市', '北京西直门外大街138号', '116.33816', '39.93771', '其他行业国有博物馆', '一级', 4777, 830949, 15, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 5.0, '08:00', '19:00', '周三,周四,周五,周六,周日', 3965, 733, '舒适', NULL, NULL, 0, '2024-04-15 21:45:02', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1253, 28, '陕西历史博物馆', 4, '陕西省', '西安市', '陕西省西安市小寨东路91号', '108.95888', '34.22304', '文物系统国有博物馆', '一级', 108697, 690000, 21026, 3, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.1, '08:00', '19:00', '周三,周四,周五,周六,周日', 4571, 672, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:02', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1254, 29, '中国电影博物馆', 2, '北京市', '北京市', '北京市朝阳区南影路9号', '116.520561', '39.996365', '其他行业国有博物馆', '一级', 35496, 308145, 51, 1, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.0, '08:00', '19:00', '周三,周四,周五,周六,周日', 3688, 647, '舒适', NULL, NULL, 0, '2024-04-15 21:45:02', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1255, 30, '上海中国航海博物馆', 5, '上海市', '上海市', '上海市浦东新区申港大道197号', '121.919778', '30.896196', '其他行业国有博物馆', '一级', 20791, 181055, 1375, 6, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.5, '08:00', '19:00', '周三,周四,周五,周六,周日', 4548, 614, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:02', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1256, 31, '湖北省博物馆', 2, '湖北省', '武汉市', '湖北省武汉市武昌区东湖路160号', '114.365321', '30.561259', '文物系统国有博物馆', '一级', 242757, 997195, 36987, 12, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.7, '08:00', '19:00', '周三,周四,周五,周六,周日', 3122, 522, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:02', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1257, 32, '杭州西湖博物馆总馆', 5, '浙江省', '杭州市', '浙江省杭州市上城区南山路89号', '120.15743', '30.241781', '文物系统国有博物馆', '一级', 17657, 625800, 1345, 10, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.3, '08:00', '19:00', '周三,周四,周五,周六,周日', 3461, 642, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:02', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1258, 33, '成都金沙遗址博物馆', 6, '四川省', '成都市', '成都市青羊区金沙遗址路2号', '104.01143', '30.68419', '文物系统国有博物馆', '一级', 3013, 602352, 2180, 1, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.8, '08:00', '19:00', '周三,周四,周五,周六,周日', 4588, 838, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:02', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1259, 34, '广东民间工艺博物馆', 3, '广东省', '广州市', '广州市中山七路陈家祠', '113.245337', '23.126707', '文物系统国有博物馆', '一级', 17969, 309610, 2733, 3, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.1, '08:00', '19:00', '周三,周四,周五,周六,周日', 3957, 731, '舒适', NULL, NULL, 0, '2024-04-15 21:45:02', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1260, 35, '天津自然博物馆(北疆博物院)', 2, '天津市', '天津市', '天津市河西区友谊路31号', '117.2091', '39.08639', '文物系统国有博物馆', '一级', 370974, 1320752, 1314, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.9, '08:00', '19:00', '周三,周四,周五,周六,周日', 3103, 745, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:02', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1261, 36, '滕州市汉画像石馆', 2, '山东省', '枣庄市', '山东省滕州市府前东路一号', '117.174184', '35.086829', '文物系统国有博物馆', '一级', 23071, 255500, 2, 7, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.6, '08:00', '19:00', '周三,周四,周五,周六,周日', 4556, 833, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:03', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1262, 37, '桂林博物馆', 6, '广西壮族自治区', '桂林市', '平桂西路一院两馆内', '110.165923', '25.244434', '文物系统国有博物馆', '一级', 39361, 460110, 4292, 6, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.7, '08:00', '19:00', '周三,周四,周五,周六,周日', 4147, 624, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:03', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1263, 38, '中国印刷博物馆', 6, '北京市', '北京市', '北京市大兴区黄村镇兴华北路25号', '116.331715', '39.733273', '其他行业国有博物馆', '一级', 347769, 47246, 302821, 3, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.5, '08:00', '19:00', '周三,周四,周五,周六,周日', 4773, 589, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:03', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1264, 39, '广西壮族自治区博物馆', 5, '广西壮族自治区', '南宁市', '南宁市民族大道34号', '108.335165', '22.812419', '文物系统国有博物馆', '一级', 5987, 80000, 5987, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.4, '08:00', '19:00', '周三,周四,周五,周六,周日', 3482, 975, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:03', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1265, 40, '中国丝绸博物馆', 2, '浙江省', '杭州市', '杭州市西湖区玉皇山路73-1号', '120.153264', '30.223196', '文物系统国有博物馆', '一级', 70246, 497716, 5093, 6, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.7, '08:00', '19:00', '周三,周四,周五,周六,周日', 3356, 986, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:03', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1266, 41, '河南博物院', 4, '河南省', '郑州市', '河南省郑州市金水区农业路8号', '113.67224', '34.78844', '文物系统国有博物馆', '一级', 178283, 640000, 53431, 6, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', '18888888888', 4.3, '08:00', '19:00', '周三,周四,周五,周二,周日,周六', 4121, 510, '拥挤', '11
', NULL, 0, '2024-04-15 21:45:03', '2024-04-16 22:19:19', NULL, 'admin: import', 'admin', NULL, 0);
INSERT INTO `tb_museum` VALUES (1267, 42, '井冈山革命博物馆', 2, '江西省', '吉安市', '江西省井冈山市茨坪镇红军南路5号1栋', '114.165561', '26.567679', '文物系统国有博物馆', '一级', 8824, 514093, 495, 7, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.5, '08:00', '19:00', '周三,周四,周五,周六,周日', 4936, 774, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:03', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1268, 43, '上海市龙华烈士纪念馆', 6, '上海市', '上海市', '龙华西路180号', '121.451288', '31.177945', '其他行业国有博物馆', '一级', 11283, 12631, 345, 1, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.2, '08:00', '19:00', '周三,周四,周五,周六,周日', 4981, 563, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:03', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1269, 44, '韶山毛泽东同志纪念馆', 6, '湖南省', '湘潭市', '湖南省湘潭市韶山市韶山冲', '112.525364', '27.914796', '文物系统国有博物馆', '一级', 63720, 3060598, 321, 14, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.2, '08:00', '19:00', '周三,周四,周五,周六,周日', 4618, 991, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:03', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1270, 45, '黑龙江省民族博物馆', 3, '黑龙江省', '哈尔滨市', '黑龙江省哈尔滨市南岗区文庙街25号', '126.675165', '45.775367', '文物系统国有博物馆', '一级', 6064, 47269, 2121, 6, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.1, '08:00', '19:00', '周三,周四,周五,周六,周日', 3624, 906, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:03', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1271, 46, '首都博物馆', 4, '北京市', '北京市', '北京市西城区复兴门外大街16号', '116.342569', '39.904872', '文物系统国有博物馆', '一级', 125320, 183750, 63291, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.9, '08:00', '19:00', '周三,周四,周五,周六,周日', 4930, 756, '舒适', NULL, NULL, 0, '2024-04-15 21:45:03', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1272, 47, '国家自然博物馆', 6, '北京市', '北京市', '北京市东城区天桥南大街126号', '116.399739', '39.883095', '其他行业国有博物馆', '一级', 372148, 605000, 0, 10, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.1, '08:00', '19:00', '周三,周四,周五,周六,周日', 4408, 743, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:03', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1273, 48, '遵义会议纪念馆', 4, '贵州省', '遵义市', '遵义市红花岗区子尹路96号', '106.920133', '27.688329', '文物系统国有博物馆', '一级', 2048, 1099557, 59, 1, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.9, '08:00', '19:00', '周三,周四,周五,周六,周日', 4407, 903, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:03', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1274, 49, '天水市博物馆(天水市伏羲文化博物馆)', 4, '甘肃省', '天水市', '甘肃省天水市秦州区伏羲路110号', '105.70683', '34.58021', '文物系统国有博物馆', '一级', 12478, 74369, 1258, 9, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.8, '08:00', '19:00', '周三,周四,周五,周六,周日', 4463, 628, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:03', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1275, 50, '中国航空博物馆', 4, '北京市', '北京市', '北京市昌平区小汤山镇大汤山村700号', '116.365738', '40.182454', '其他行业国有博物馆', '一级', 27123, 2300000, 123, 15, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.7, '08:00', '19:00', '周三,周四,周五,周六,周日', 4902, 724, '舒适', NULL, NULL, 0, '2024-04-15 21:45:03', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1276, 51, '清华大学艺术博物馆', 6, '北京市', '北京市', '北京海淀清华园1号清华大学艺术博物馆', '116.335582', '40.001976', '其他行业国有博物馆', '一级', 14617, 128202, 482, 3, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 5.0, '08:00', '19:00', '周三,周四,周五,周六,周日', 3164, 817, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:04', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1277, 52, '长沙简牍博物馆', 3, '湖南省', '长沙市', '长沙市天心区白沙路92号', '112.983162', '28.184909', '文物系统国有博物馆', '一级', 81337, 500000, 2594, 2, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.8, '08:00', '19:00', '周三,周四,周五,周六,周日', 4593, 526, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:04', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1278, 53, '武汉博物馆', 6, '湖北省', '武汉市', '武汉市江汉区青年路373号', '114.256479', '30.61148', '文物系统国有博物馆', '一级', 52401, 210000, 16460, 3, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.1, '08:00', '19:00', '周三,周四,周五,周六,周日', 3506, 672, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:04', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1279, 54, '瑞金中央革命根据地纪念馆', 3, '江西省', '赣州市', '江西省赣州市瑞金市象湖镇龙珠路1号', '116.015811', '25.873629', '文物系统国有博物馆', '一级', 11146, 811694, 1134, 1, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.6, '08:00', '19:00', '周三,周四,周五,周六,周日', 3388, 733, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:04', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1280, 55, '南京中国科举博物馆', 5, '江苏省', '南京市', '江苏省南京市秦淮区金陵路1号', '118.789893', '32.022867', '其他行业国有博物馆', '一级', 3953, 385395, 148, 2, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.8, '08:00', '19:00', '周三,周四,周五,周六,周日', 3458, 867, '舒适', NULL, NULL, 0, '2024-04-15 21:45:04', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1281, 56, '重庆中国三峡博物馆(重庆博物馆)', 4, '重庆市', '重庆市', '重庆市渝中区人民路236号', '106.55034', '29.56208', '文物系统国有博物馆', '一级', 119772, 737002, 18670, 16, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.4, '08:00', '19:00', '周三,周四,周五,周六,周日', 3972, 553, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:04', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1282, 57, '邓小平故居陈列馆', 3, '四川省', '广安市', '广安市广安区协兴镇牌坊新村420号', '106.642073', '30.523666', '文物系统国有博物馆', '一级', 16663, 1467707, 165, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.5, '08:00', '19:00', '周三,周四,周五,周六,周日', 3459, 515, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:04', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1283, 58, '温州博物馆', 6, '浙江省', '温州市', '温州市市府路491号', '120.697954', '27.988496', '文物系统国有博物馆', '一级', 26933, 528672, 1605, 14, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.3, '08:00', '19:00', '周三,周四,周五,周六,周日', 3638, 867, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:04', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1284, 59, '胡耀邦同志纪念馆', 5, '湖南省', '长沙市', '湖南省浏阳市中和镇苍坊村', '113.881624', '28.081452', '文物系统国有博物馆', '一级', 21109, 982200, 1882, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.6, '08:00', '19:00', '周三,周四,周五,周六,周日', 3580, 917, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:04', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1285, 60, '上海科技馆', 6, '上海市', '上海市', '上海市浦东新区世纪大道2000号', '121.541778', '31.218148', '其他行业国有博物馆', '一级', 312727, 1403179, 7782, 30, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.3, '08:00', '19:00', '周三,周四,周五,周六,周日', 4138, 834, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:04', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1286, 61, '中国地质博物馆', 4, '北京市', '北京市', '北京市西城区西四羊肉胡同15号', '116.37169', '39.92341', '其他行业国有博物馆', '一级', 119131, 154164, 0, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.8, '08:00', '19:00', '周三,周四,周五,周六,周日', 4322, 562, '舒适', NULL, NULL, 0, '2024-04-15 21:45:04', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1287, 62, '朱德同志故居纪念馆', 6, '四川省', '南充市', '四川省南充市仪陇县马鞍镇大湾路47号', '106.600111', '31.462421', '文物系统国有博物馆', '一级', 2069, 473186, 684, 1, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.6, '08:00', '19:00', '周三,周四,周五,周六,周日', 4375, 505, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:04', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1288, 63, '山东博物馆(山东省石刻艺术博物馆)', 4, '山东省', '济南市', '山东省济南市历下区经十路11899号', '117.095754', '36.658065', '文物系统国有博物馆', '一级', 201652, 962238, 49027, 12, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.5, '08:00', '19:00', '周三,周四,周五,周六,周日', 4592, 550, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:04', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1289, 64, '大连博物馆', 6, '辽宁省', '大连市', '大连市沙河口区会展路10号', '121.586122', '38.888469', '文物系统国有博物馆', '一级', 32984, 248181, 150, 2, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.3, '08:00', '19:00', '周三,周四,周五,周六,周日', 4498, 607, '舒适', NULL, NULL, 0, '2024-04-15 21:45:04', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1290, 65, '平凉市博物馆', 2, '甘肃省', '平凉市', '崆峒山大景区龙隐寺公园内', '106.621013', '35.562392', '文物系统国有博物馆', '一级', 6513, 361544, 1394, 4, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.6, '08:00', '19:00', '周三,周四,周五,周六,周日', 3415, 720, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:05', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1291, 66, '上海博物馆', 3, '上海市', '上海市', '上海市黄浦区人民大道201号', '121.475305', '31.228514', '文物系统国有博物馆', '一级', 1352926, 459522, 144990, 14, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.9, '08:00', '19:00', '周三,周四,周五,周六,周日', 4032, 571, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:05', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1292, 67, '西藏博物馆', 3, '西藏自治区', '拉萨市', '西藏自治区拉萨市城关区罗布林卡路34号', '91.103054', '29.650093', '文物系统国有博物馆', '一级', 61200, 188114, 43611, 3, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.5, '08:00', '19:00', '周三,周四,周五,周六,周日', 3576, 555, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:05', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1293, 68, '临沂市博物馆', 4, '山东省', '临沂市', '临沂市北城新区兰陵路中段', '118.357964', '35.090568', '文物系统国有博物馆', '一级', 39944, 124614, 2132, 9, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.3, '08:00', '19:00', '周三,周四,周五,周六,周日', 3427, 991, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:05', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1294, 69, '武汉革命博物馆', 4, '湖北省', '武汉市', '武汉市武昌区红巷13号', '114.300341', '30.553425', '文物系统国有博物馆', '一级', 27999, 801124, 1006, 10, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.3, '08:00', '19:00', '周三,周四,周五,周六,周日', 4344, 615, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:05', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1295, 70, '随州市博物馆', 6, '湖北省', '随州市', '随州市擂鼓墩大道98号', '113.35762', '31.72716', '文物系统国有博物馆', '一级', 12750, 231568, 1884, 7, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.6, '08:00', '19:00', '周三,周四,周五,周六,周日', 4968, 962, '舒适', NULL, NULL, 0, '2024-04-15 21:45:05', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1296, 71, '福建中国闽台缘博物馆', 2, '福建省', '泉州市', '泉州市307省道西湖北侧(北清东路212号)', '118.592139', '24.932085', '文物系统国有博物馆', '一级', 21080, 305419, 592, 2, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.6, '08:00', '19:00', '周三,周四,周五,周六,周日', 3264, 954, '舒适', NULL, NULL, 0, '2024-04-15 21:45:05', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1297, 72, '安徽省地质博物馆', 6, '安徽省', '合肥市', '合肥市政务区嘉和路999号', '117.221346', '31.803465', '其他行业国有博物馆', '一级', 52678, 414442, 0, 6, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.2, '08:00', '19:00', '周三,周四,周五,周六,周日', 3409, 773, '舒适', NULL, NULL, 0, '2024-04-15 21:45:05', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1298, 73, '周恩来邓颖超纪念馆', 6, '天津市', '天津市', '天津市南开区水上公园西路9号', '117.165', '39.09413', '文物系统国有博物馆', '一级', 15759, 90674, 583, 6, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.8, '08:00', '19:00', '周三,周四,周五,周六,周日', 4589, 952, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:05', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1299, 74, '常熟博物馆', 4, '江苏省', '苏州市', '江苏省常熟市北门大街1号', '120.740194', '31.650424', '文物系统国有博物馆', '一级', 17948, 60762, 1139, 2, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.3, '08:00', '19:00', '周三,周四,周五,周六,周日', 4963, 986, '舒适', NULL, NULL, 0, '2024-04-15 21:45:05', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1300, 75, '黑龙江省博物馆', 5, '黑龙江省', '哈尔滨市', '黑龙江省哈尔滨市南岗区红军街50号', '126.641333', '45.757518', '文物系统国有博物馆', '一级', 211940, 33589, 13257, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.4, '08:00', '19:00', '周三,周四,周五,周六,周日', 4247, 986, '舒适', NULL, NULL, 0, '2024-04-15 21:45:05', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1301, 76, '吉林省博物院', 6, '吉林省', '长春市', '吉林省长春市净月国家高新技术产业开发区永顺路1666号', '125.433766', '43.768296', '文物系统国有博物馆', '一级', 128607, 293997, 17972, 3, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 5.0, '08:00', '19:00', '周三,周四,周五,周六,周日', 3264, 814, '舒适', NULL, NULL, 0, '2024-04-15 21:45:05', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1302, 77, '重庆自然博物馆', 2, '重庆市', '重庆市', '重庆市北碚区金华路398号', '106.407788', '29.818902', '文物系统国有博物馆', '一级', 114815, 752628, 0, 9, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.5, '08:00', '19:00', '周三,周四,周五,周六,周日', 3435, 755, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:05', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1303, 78, '刘少奇同志纪念馆', 6, '湖南省', '长沙市', '湖南省长沙市宁乡市花明楼镇炭子冲', '112.657148', '28.026564', '文物系统国有博物馆', '一级', 29521, 2091969, 654, 1, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.5, '08:00', '19:00', '周三,周四,周五,周六,周日', 3434, 900, '舒适', NULL, NULL, 0, '2024-04-15 21:45:05', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1304, 79, '武汉市中山舰博物馆', 6, '湖北省', '武汉市', '武汉市江夏区金口街中山舰路特1号', '114.145609', '30.326856', '文物系统国有博物馆', '一级', 7178, 48099, 3332, 3, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.6, '08:00', '19:00', '周三,周四,周五,周六,周日', 4265, 529, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:05', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1305, 80, '湖南博物院', 5, '湖南省', '长沙市', '长沙市东风路50号', '113.483768', '28.21516', '文物系统国有博物馆', '一级', 527559, 1221071, 40411, 7, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.7, '08:00', '19:00', '周三,周四,周五,周六,周日', 4036, 586, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:05', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1306, 81, '吉林省自然博物馆', 2, '吉林省', '长春市', '吉林省长春市净月大街2556号', '125.432509', '43.82936', '其他行业国有博物馆', '一级', 100349, 99887, 0, 7, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.6, '08:00', '19:00', '周三,周四,周五,周六,周日', 4942, 815, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:05', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1307, 82, '故宫博物院', 6, '北京市', '北京市', '北京市东城区景山前街4号', '116.398643', '39.921234', '文物系统国有博物馆', '一级', 1917657, 3269164, 927745, 11, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', '18888888888', 4.1, '08:00', '19:00', '周三,周四,周五,周六,周日', 3201, 705, '舒适', '
', '#小程序://故宫博物院/NjNEVFK9Cay23Nj', 0, '2024-04-15 21:45:06', '2024-04-16 22:23:55', NULL, 'admin: import', 'admin', NULL, 0);
INSERT INTO `tb_museum` VALUES (1308, 83, '宿州市博物馆', 3, '安徽省', '宿州市', '皖宿州市博物馆路1号', '116.96497', '33.64397', '文物系统国有博物馆', '一级', 11087, 118864, 655, 2, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.7, '08:00', '19:00', '周三,周四,周五,周六,周日', 3112, 857, '舒适', NULL, NULL, 0, '2024-04-15 21:45:06', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1309, 84, '南昌八一起义纪念馆', 5, '江西省', '南昌市', '江西省南昌市中山路380号', '115.8895', '28.674691', '文物系统国有博物馆', '一级', 3733, 752600, 1129, 7, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.7, '08:00', '19:00', '周三,周四,周五,周六,周日', 4975, 563, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:06', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1310, 85, '青州市博物馆', 2, '山东省', '潍坊市', '青州市范公亭西路1号', '118.463057', '36.684381', '文物系统国有博物馆', '一级', 44378, 352549, 3056, 6, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.5, '08:00', '19:00', '周三,周四,周五,周六,周日', 4313, 617, '舒适', NULL, NULL, 0, '2024-04-15 21:45:06', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1311, 86, '甘肃省博物馆', 2, '甘肃省', '兰州市', '甘肃省兰州市七里河区西津西路3号', '103.771649', '36.067698', '文物系统国有博物馆', '一级', 88821, 268767, 52183, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.8, '08:00', '19:00', '周三,周四,周五,周六,周日', 3380, 962, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:06', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1312, 87, '福建省泉州海外交通史博物馆', 4, '福建省', '泉州市', '福建省泉州市丰泽区东湖街425号', '118.611388', '24.909928', '文物系统国有博物馆', '一级', 9365, 498360, 1442, 6, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.1, '08:00', '19:00', '周三,周四,周五,周六,周日', 3595, 680, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:06', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1313, 88, '雨花台烈士纪念馆', 5, '江苏省', '南京市', '江苏省南京市雨花台区雨花路215号雨花台烈士陵园', '118.780795', '32.002683', '其他行业国有博物馆', '一级', 5493, 2002100, 610, 1, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.6, '08:00', '19:00', '周三,周四,周五,周六,周日', 4180, 727, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:06', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1314, 89, '浙江省博物馆(浙江革命历史纪念馆)', 2, '浙江省', '杭州市', '浙江省杭州市西湖区孤山路25号', '120.143585', '30.250774', '文物系统国有博物馆', '一级', 82421, 873844, 36209, 16, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 5.0, '08:00', '19:00', '周三,周四,周五,周六,周日', 4583, 716, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:06', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1315, 90, '侵华日军南京大屠杀遇难同胞纪念馆', 4, '江苏省', '南京市', '江苏省南京市水西门大街418号', '118.744926', '32.035354', '其他行业国有博物馆', '一级', 192645, 1390192, 6318, 8, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.4, '08:00', '19:00', '周三,周四,周五,周六,周日', 3052, 915, '舒适', NULL, NULL, 0, '2024-04-15 21:45:06', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1316, 91, '云南省博物馆', 4, '云南省', '昆明市', '云南省昆明市广福路6393号', '102.75383', '24.949202', '文物系统国有博物馆', '一级', 230303, 673976, 14337, 6, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.0, '08:00', '19:00', '周三,周四,周五,周六,周日', 4638, 963, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:06', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1317, 92, '宜昌博物馆', 5, '湖北省', '宜昌市', '湖北省宜昌市伍家岗区求索路', '111.380187', '30.63481', '文物系统国有博物馆', '一级', 58732, 220213, 1623, 8, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.3, '08:00', '19:00', '周三,周四,周五,周六,周日', 4919, 628, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:06', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1318, 93, '汉景帝阳陵博物院', 2, '陕西省', '西安市', '西安经济技术开发区泾河工业园区机场路东段', '108.976699', '34.440162', '文物系统国有博物馆', '一级', 7386, 46264, 1113, 4, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.1, '08:00', '19:00', '周三,周四,周五,周六,周日', 3899, 666, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:06', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1319, 94, '延安革命纪念馆', 5, '陕西省', '延安市', '陕西省延安市圣地路9号', '109.48041', '36.605715', '文物系统国有博物馆', '一级', 35829, 349859, 11551, 2, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.9, '08:00', '19:00', '周三,周四,周五,周六,周日', 4685, 690, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:06', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1320, 95, '山西博物院', 2, '山西省', '太原市', '山西省太原市滨河西路北段13号', '112.531251', '37.865483', '文物系统国有博物馆', '一级', 657474, 675143, 40418, 17, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.3, '08:00', '19:00', '周三,周四,周五,周六,周日', 4165, 760, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:06', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1321, 96, '南通博物苑', 4, '江苏省', '南通市', '南通市濠南路19号', '120.871524', '32.01277', '文物系统国有博物馆', '一级', 50191, 669325, 2795, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 5.0, '08:00', '19:00', '周三,周四,周五,周六,周日', 3417, 824, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:06', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1322, 97, '中国人民革命军事博物馆', 3, '北京市', '北京市', '北京市海淀区复兴路9号', '116.322128', '39.909562', '其他行业国有博物馆', '一级', 214750, 608772, 1793, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.5, '08:00', '19:00', '周三,周四,周五,周六,周日', 3802, 952, '舒适', NULL, NULL, 0, '2024-04-15 21:45:07', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1323, 98, '青海省博物馆', 2, '青海省', '西宁市', '青海省西宁市城西区西关大街58号', '101.75599', '36.62932', '文物系统国有博物馆', '一级', 15742, 87275, 2079, 4, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.9, '08:00', '19:00', '周三,周四,周五,周六,周日', 4966, 780, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:07', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1324, 99, '自贡恐龙博物馆', 6, '四川省', '自贡市', '自贡市大安区燊海井路四段268号', '104.828834', '29.394986', '文物系统国有博物馆', '一级', 4102, 492352, 3475, 11, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.2, '08:00', '19:00', '周三,周四,周五,周六,周日', 4681, 990, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:07', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1325, 100, '海南省博物馆', 2, '海南省', '海口市', '海南省海口市琼山区国兴大道68号', '110.376939', '20.014666', '文物系统国有博物馆', '一级', 28811, 268587, 1347, 10, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.3, '08:00', '19:00', '周三,周四,周五,周六,周日', 4982, 683, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:07', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1326, 101, '洛阳博物馆', 2, '河南省', '洛阳市', '河南省洛阳市洛龙区聂泰路与文博路交叉口', '112.454064', '34.642093', '文物系统国有博物馆', '一级', 20449, 500000, 5428, 6, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.1, '08:00', '19:00', '周三,周四,周五,周六,周日', 3902, 652, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:07', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1327, 102, '四渡赤水纪念馆', 2, '贵州省', '遵义市', '贵州省遵义市习水县土城镇长征街', '105.995583', '28.280282', '文物系统国有博物馆', '一级', 5197, 262556, 81, 1, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.5, '08:00', '19:00', '周三,周四,周五,周六,周日', 4719, 927, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:07', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1328, 103, '沈阳故宫博物院', 5, '辽宁省', '沈阳市', '辽宁省沈阳市沈河区沈阳路171号', '123.455654', '41.798498', '文物系统国有博物馆', '一级', 109191, 728666, 39349, 40, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.7, '08:00', '19:00', '周三,周四,周五,周六,周日', 3605, 968, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:07', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1329, 104, '贵州省博物馆', 6, '贵州省', '贵阳市', '贵州省贵阳市观山湖区林城东路107号', '106.643063', '26.647145', '文物系统国有博物馆', '一级', 55779, 633897, 5300, 4, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.1, '08:00', '19:00', '周三,周四,周五,周六,周日', 4735, 739, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:07', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1330, 105, '青岛山炮台遗址展览馆', 6, '山东省', '青岛市', '青岛市京山路26号', '120.345287', '36.068891', '文物系统国有博物馆', '一级', 2198, 86393, 0, 1, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.5, '08:00', '19:00', '周三,周四,周五,周六,周日', 4127, 581, '舒适', NULL, NULL, 0, '2024-04-15 21:45:07', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1331, 106, '中国人民抗日战争纪念馆', 4, '北京市', '北京市', '北京市丰台区卢沟桥城内街101号', '116.226737', '39.851778', '其他行业国有博物馆', '一级', 30412, 489325, 183, 2, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.1, '08:00', '19:00', '周三,周四,周五,周六,周日', 4834, 836, '舒适', NULL, NULL, 0, '2024-04-15 21:45:07', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1332, 107, '鸦片战争博物馆', 4, '广东省', '东莞市', '广东省东莞市虎门镇解放路113号', '113.66004', '22.824319', '文物系统国有博物馆', '一级', 8125, 2025800, 258, 4, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.7, '08:00', '19:00', '周三,周四,周五,周六,周日', 3364, 873, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:07', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1333, 108, '辛亥革命博物院(辛亥革命武昌起义纪念馆)', 4, '湖北省', '武汉市', '湖北省武汉市武昌区武珞路1号', '114.30646', '30.54225', '文物系统国有博物馆', '一级', 34709, 290000, 512, 3, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.9, '08:00', '19:00', '周三,周四,周五,周六,周日', 4895, 911, '舒适', NULL, NULL, 0, '2024-04-15 21:45:07', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1334, 109, '萍乡博物馆(萍乡孔庙博物馆)', 3, '江西省', '萍乡市', '江西省萍乡市滨河东路376号', '113.859854', '27.640123', '文物系统国有博物馆', '一级', 6029, 231142, 1086, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.5, '08:00', '19:00', '周三,周四,周五,周六,周日', 4312, 583, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:07', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1335, 110, '长沙市博物馆', 2, '湖南省', '长沙市', '湖南省长沙市开福区新河 三角洲滨江文化园', '112.97921', '28.24092', '文物系统国有博物馆', '一级', 50946, 850000, 7914, 1, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.2, '08:00', '19:00', '周三,周四,周五,周六,周日', 3786, 963, '舒适', NULL, NULL, 0, '2024-04-15 21:45:08', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1336, 111, '秦始皇帝陵博物院(秦始皇兵马俑博物馆)', 2, '陕西省', '西安市', '陕西省西安市临潼区秦陵镇', '109.230441', '34.380098', '文物系统国有博物馆', '一级', 7585, 1113946, 2230, 9, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.2, '08:00', '19:00', '周三,周四,周五,周六,周日', 4976, 858, '舒适', NULL, NULL, 0, '2024-04-15 21:45:08', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1337, 112, '旅顺博物馆', 4, '辽宁省', '大连市', '大连市旅顺口区列宁街42号', '121.235212', '38.808496', '文物系统国有博物馆', '一级', 100136, 412627, 26444, 8, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.9, '08:00', '19:00', '周三,周四,周五,周六,周日', 4625, 527, '舒适', NULL, NULL, 0, '2024-04-15 21:45:08', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1338, 113, '广州博物馆', 3, '广东省', '广州市', '广州市越秀山镇海楼', '113.264499', '23.130061', '文物系统国有博物馆', '一级', 45331, 235130, 2693, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.8, '08:00', '19:00', '周三,周四,周五,周六,周日', 4301, 826, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:08', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1339, 114, '安源路矿工人运动纪念馆', 6, '江西省', '萍乡市', '萍乡市安源区安源镇', '113.886494', '27.605294', '文物系统国有博物馆', '一级', 2653, 421044, 2204, 4, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.3, '08:00', '19:00', '周三,周四,周五,周六,周日', 4216, 882, '舒适', NULL, NULL, 0, '2024-04-15 21:45:08', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1340, 115, '青岛市博物馆', 4, '山东省', '青岛市', '青岛市崂山区梅岭东路51号', '120.473172', '36.10155', '文物系统国有博物馆', '一级', 121811, 426235, 9504, 7, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.2, '08:00', '19:00', '周三,周四,周五,周六,周日', 3447, 544, '舒适', NULL, NULL, 0, '2024-04-15 21:45:08', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1341, 116, '南阳市汉画馆', 5, '河南省', '南阳市', '河南省南阳市卧龙区汉画街398号', '112.507412', '32.971306', '文物系统国有博物馆', '一级', 2039, 404800, 1406, 1, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.5, '08:00', '19:00', '周三,周四,周五,周六,周日', 4733, 525, '舒适', NULL, NULL, 0, '2024-04-15 21:45:08', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1342, 117, '蚌埠市博物馆', 5, '安徽省', '蚌埠市', '蚌埠市东海大道市民广场西侧', '117.366989', '32.917166', '文物系统国有博物馆', '一级', 5927, 297300, 1468, 7, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.7, '08:00', '19:00', '周三,周四,周五,周六,周日', 3972, 530, '舒适', NULL, NULL, 0, '2024-04-15 21:45:08', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1343, 118, '青岛啤酒博物馆', 6, '山东省', '青岛市', '青岛市市北区登州路56号', '120.347199', '36.078976', '其他行业国有博物馆', '一级', 21, 702887, 21, 3, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.7, '08:00', '19:00', '周三,周四,周五,周六,周日', 3305, 919, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:08', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1344, 119, '宁波博物院(宁波博物馆、宁波帮博物馆)', 3, '浙江省', '宁波市', '宁波市鄞州区首南中路1000号', '121.545443', '29.814866', '文物系统国有博物馆', '一级', 74411, 635568, 2564, 6, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.8, '08:00', '19:00', '周三,周四,周五,周六,周日', 3674, 806, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:08', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1345, 120, '广东海上丝绸之路博物馆', 3, '广东省', '阳江市', '广东省阳江市海陵岛试验区十里银滩', '111.874458', '21.570978', '文物系统国有博物馆', '一级', 30047, 584146, 467, 2, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.1, '08:00', '19:00', '周三,周四,周五,周六,周日', 4202, 863, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:08', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1346, 121, '辽宁省博物馆', 2, '辽宁省', '沈阳市', '辽宁省沈阳市浑南区智慧三街157号', '123.460496', '41.678066', '文物系统国有博物馆', '一级', 117948, 628000, 63706, 11, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 5.0, '08:00', '19:00', '周三,周四,周五,周六,周日', 3603, 888, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:08', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1347, 122, '西安博物院', 4, '陕西省', '西安市', '西安市碑林区友谊西路72号', '108.942349', '34.24086', '文物系统国有博物馆', '一级', 113977, 400967, 11612, 1, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.0, '08:00', '19:00', '周三,周四,周五,周六,周日', 4207, 908, '舒适', NULL, NULL, 0, '2024-04-15 21:45:08', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1348, 123, '潍坊市博物馆', 2, '山东省', '潍坊市', '潍坊市高新区东风东街6616号', '119.158762', '36.711984', '文物系统国有博物馆', '一级', 68913, 485000, 1190, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.7, '08:00', '19:00', '周三,周四,周五,周六,周日', 3712, 980, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:08', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1349, 124, '九江市博物馆', 4, '江西省', '九江市', '九江市八里湖胜利公园胜利碑南侧', '115.953221', '29.692995', '文物系统国有博物馆', '一级', 5295, 388108, 2062, 4, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.0, '08:00', '19:00', '周三,周四,周五,周六,周日', 4446, 933, '舒适', NULL, NULL, 0, '2024-04-15 21:45:08', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1350, 125, '孔子博物馆', 6, '山东省', '济宁市', '孔子大道100号', '116.983028', '35.55529', '文物系统国有博物馆', '一级', 358870, 260610, 11412, 1, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.3, '08:00', '19:00', '周三,周四,周五,周六,周日', 4873, 691, '舒适', NULL, NULL, 0, '2024-04-15 21:45:08', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1351, 126, '浙江自然博物院', 4, '浙江省', '杭州市', '杭州西湖文化广场6号,湖州安吉梅园路1号', '120.16452', '30.276927', '文物系统国有博物馆', '一级', 289946, 1581263, 0, 12, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.8, '08:00', '19:00', '周三,周四,周五,周六,周日', 3674, 534, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:09', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1352, 127, '齐文化博物院', 6, '山东省', '淄博市', '临淄区临淄大道308号', '118.359263', '36.813762', '文物系统国有博物馆', '一级', 30801, 183200, 2549, 1, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 5.0, '08:00', '19:00', '周三,周四,周五,周六,周日', 4313, 898, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:09', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1353, 128, '徐州博物馆', 3, '江苏省', '徐州市', '江苏省徐州市和平路118号', '117.186645', '34.251026', '文物系统国有博物馆', '一级', 26270, 839500, 1063, 6, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.2, '08:00', '19:00', '周三,周四,周五,周六,周日', 4481, 831, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:09', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1354, 129, '伪满皇宫博物院', 2, '吉林省', '长春市', '吉林省长春市光复北路5号', '125.348671', '43.905724', '文物系统国有博物馆', '一级', 56346, 267734, 11128, 43, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.4, '08:00', '19:00', '周三,周四,周五,周六,周日', 3419, 647, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:09', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1355, 130, '鄂尔多斯市博物院', 2, '内蒙古自治区', '鄂尔多斯市', '鄂尔多斯市康巴什区文化西路5号', '109.78503', '39.60115', '文物系统国有博物馆', '一级', 35200, 134820, 1376, 6, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.2, '08:00', '19:00', '周三,周四,周五,周六,周日', 4178, 786, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:09', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1356, 131, '赣州市博物馆', 5, '江西省', '赣州市', '赣州市章贡区赣康路和长宁路交汇处', '114.918986', '25.812092', '文物系统国有博物馆', '一级', 10988, 918705, 2505, 12, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.1, '08:00', '19:00', '周三,周四,周五,周六,周日', 3411, 580, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:09', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1357, 132, '山西地质博物馆', 2, '山西省', '太原市', '山西省太原市滨河西路北段17号', '112.533146', '37.868192', '其他行业国有博物馆', '一级', 51436, 522765, 0, 1, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.3, '08:00', '19:00', '周三,周四,周五,周六,周日', 3772, 557, '舒适', NULL, NULL, 0, '2024-04-15 21:45:09', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1358, 133, '舟山博物馆', 5, '浙江省', '舟山市', '舟山市新城海天大道610号海洋文化艺术中心', '122.204429', '29.982398', '文物系统国有博物馆', '一级', 10639, 276388, 285, 3, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.7, '08:00', '19:00', '周三,周四,周五,周六,周日', 3362, 768, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:09', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1359, 134, '福建博物院', 2, '福建省', '福州市', '福建省福州市鼓楼区湖头街96号', '119.287633', '26.094111', '文物系统国有博物馆', '一级', 221187, 763058, 41736, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.3, '08:00', '19:00', '周三,周四,周五,周六,周日', 3320, 577, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:09', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1360, 135, '安徽中国徽州文化博物馆', 6, '安徽省', '黄山市', '安徽省黄山市屯溪区迎宾大道50号', '118.274605', '29.71766', '文物系统国有博物馆', '一级', 97491, 345271, 4086, 22, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.6, '08:00', '19:00', '周三,周四,周五,周六,周日', 3876, 820, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:09', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1361, 136, '南京博物院', 3, '江苏省', '南京市', '南京市中山东路321号', '118.804726', '32.04027', '文物系统国有博物馆', '一级', 433265, 1610000, 222973, 20, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.7, '08:00', '19:00', '周三,周四,周五,周六,周日', 3393, 642, '舒适', NULL, NULL, 0, '2024-04-15 21:45:09', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1362, 137, '山东省滕州市博物馆', 2, '山东省', '枣庄市', '滕州市龙泉广场东北角', '117.175224', '35.085856', '文物系统国有博物馆', '一级', 52806, 388632, 199, 7, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.1, '08:00', '19:00', '周三,周四,周五,周六,周日', 4492, 885, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:09', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1363, 138, '北京鲁迅博物馆(北京新文化运动纪念馆)', 6, '北京市', '北京市', '北京市西城区阜成门内大街宫门口', '116.33688', '39.922221', '文物系统国有博物馆', '一级', 101074, 232000, 759, 8, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.4, '08:00', '19:00', '周三,周四,周五,周六,周日', 3119, 518, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:09', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1364, 139, '宁夏回族自治区固原博物馆', 6, '宁夏回族自治区', '固原市', '固原市原州区西城路133号', '106.275951', '36.005418', '文物系统国有博物馆', '一级', 24147, 79385, 5947, 4, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.8, '08:00', '19:00', '周三,周四,周五,周六,周日', 4318, 994, '舒适', NULL, NULL, 0, '2024-04-15 21:45:09', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1365, 140, '济宁市博物馆(朱复戡艺术馆)', 6, '山东省', '济宁市', '山东省济宁市太白湖新区运河路140号(济宁市文化中心新馆)', '116.602034', '35.342977', '文物系统国有博物馆', '一级', 161111, 170957, 501, 8, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.2, '08:00', '19:00', '周三,周四,周五,周六,周日', 4384, 853, '舒适', NULL, NULL, 0, '2024-04-15 21:45:09', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1366, 141, '镇江博物馆', 4, '江苏省', '镇江市', '江苏省镇江市润州区伯先路85号', '119.431959', '32.21374', '文物系统国有博物馆', '一级', 22164, 385721, 3570, 6, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.5, '08:00', '19:00', '周三,周四,周五,周六,周日', 3900, 841, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:09', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1367, 142, '中国农业博物馆', 3, '北京市', '北京市', '北京市朝阳区东三环北路16号', '116.46227', '39.93697', '其他行业国有博物馆', '一级', 98979, 160213, 1642, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.8, '08:00', '19:00', '周三,周四,周五,周六,周日', 4888, 805, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:10', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1368, 143, '杭州工艺美术博物馆', 5, '浙江省', '杭州市', '浙江省杭州市拱墅区小河路450号', '120.138047', '30.318979', '文物系统国有博物馆', '一级', 7581, 572477, 565, 4, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.7, '08:00', '19:00', '周三,周四,周五,周六,周日', 3921, 966, '舒适', NULL, NULL, 0, '2024-04-15 21:45:10', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1369, 144, '广州艺术博物院', 2, '广东省', '广州市', '广州市越秀区麓湖路13号', '113.280872', '23.142979', '文物系统国有博物馆', '一级', 33292, 246925, 4533, 18, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.1, '08:00', '19:00', '周三,周四,周五,周六,周日', 4650, 920, '舒适', NULL, NULL, 0, '2024-04-15 21:45:10', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1370, 145, '自贡市盐业历史博物馆', 6, '四川省', '自贡市', '四川省自贡市自流井区解放路173号', '104.771264', '29.348727', '文物系统国有博物馆', '一级', 4581, 198783, 626, 3, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.7, '08:00', '19:00', '周三,周四,周五,周六,周日', 3743, 772, '舒适', NULL, NULL, 0, '2024-04-15 21:45:10', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1371, 146, '贵州省民族博物馆', 3, '贵州省', '贵阳市', '贵阳市南明区箭道街23号', '106.712625', '26.568368', '其他行业国有博物馆', '一级', 18229, 1062502, 205, 1, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.0, '08:00', '19:00', '周三,周四,周五,周六,周日', 3806, 514, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:10', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1372, 147, '四川博物院', 6, '四川省', '成都市', '四川省成都市青羊区浣花南路251号', '104.034094', '30.660802', '文物系统国有博物馆', '一级', 195352, 420343, 45605, 8, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.4, '08:00', '19:00', '周三,周四,周五,周六,周日', 3419, 724, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:10', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1373, 148, '西安半坡博物馆', 3, '陕西省', '西安市', '西安市灞桥区半坡路155号', '109.053587', '34.257717', '文物系统国有博物馆', '一级', 18685, 49600, 4528, 2, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.4, '08:00', '19:00', '周三,周四,周五,周六,周日', 4628, 823, '舒适', NULL, NULL, 0, '2024-04-15 21:45:10', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1374, 149, '孙中山故居纪念馆', 4, '广东省', '中山市', '广东省中山市翠亨村', '113.536945', '22.444705', '文物系统国有博物馆', '一级', 22897, 931199, 1634, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.1, '08:00', '19:00', '周三,周四,周五,周六,周日', 3561, 554, '舒适', NULL, NULL, 0, '2024-04-15 21:45:10', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1375, 150, '苏州博物馆(苏州民俗博物馆)', 4, '江苏省', '苏州市', '苏州市东北街204号', '120.627655', '31.32313', '文物系统国有博物馆', '一级', 34011, 1417412, 9734, 10, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 5.0, '08:00', '19:00', '周三,周四,周五,周六,周日', 3070, 947, '舒适', NULL, NULL, 0, '2024-04-15 21:45:10', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1376, 151, '淮北市博物馆', 6, '安徽省', '淮北市', '淮北市博物馆路1号', '116.798488', '33.951832', '文物系统国有博物馆', '一级', 6614, 86103, 1432, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.7, '08:00', '19:00', '周三,周四,周五,周六,周日', 3139, 609, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:10', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1377, 152, '中国共产党第一次全国代表大会纪念馆', 2, '上海市', '上海市', '上海黄浦区黄陂南路374号', '121.476889', '31.219673', '文物系统国有博物馆', '一级', 58223, 1557316, 8450, 7, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.4, '08:00', '19:00', '周三,周四,周五,周六,周日', 3062, 876, '舒适', NULL, NULL, 0, '2024-04-15 21:45:10', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1378, 153, '陈云纪念馆(青浦革命历史纪念馆)', 3, '上海市', '上海市', '上海市青浦区朱枫公路3516号', '121.043932', '31.007213', '其他行业国有博物馆', '一级', 44055, 118202, 0, 4, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.6, '08:00', '19:00', '周三,周四,周五,周六,周日', 3099, 973, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:10', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1379, 154, '南越王博物院', 6, '广东省', '广州市', '广东省广州市越秀区中山四路316号', '113.270478', '23.126139', '文物系统国有博物馆', '一级', 6620, 482357, 1518, 6, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.4, '08:00', '19:00', '周三,周四,周五,周六,周日', 4521, 953, '舒适', NULL, NULL, 0, '2024-04-15 21:45:10', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1380, 155, '古田会议纪念馆', 4, '福建省', '龙岩市', '福建省龙岩市上杭县古田镇古田路85号', '116.823244', '25.221552', '文物系统国有博物馆', '一级', 20181, 500000, 2028, 1, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.1, '08:00', '19:00', '周三,周四,周五,周六,周日', 3779, 852, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:10', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1381, 156, '中国科学技术馆', 5, '北京市', '北京市', '北京市朝阳区北辰东路5号一幢', '116.398793', '40.005632', '其他行业国有博物馆', '一级', 764, 1431189, 0, 6, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.4, '08:00', '19:00', '周三,周四,周五,周六,周日', 3688, 822, '舒适', NULL, NULL, 0, '2024-04-15 21:45:10', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1382, 157, '深圳博物馆', 5, '广东省', '深圳市', '深圳市福田区深南中路同心路6号', '114.100531', '22.54191', '文物系统国有博物馆', '一级', 19613, 733713, 5456, 9, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.7, '08:00', '19:00', '周三,周四,周五,周六,周日', 3913, 526, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:11', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1383, 158, '黑河市瑷珲历史陈列馆', 2, '黑龙江省', '黑河市', '黑龙江省黑河市瑷珲镇萨布素街', '127.491259', '49.985116', '文物系统国有博物馆', '一级', 8819, 346900, 2535, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.0, '08:00', '19:00', '周三,周四,周五,周六,周日', 3025, 869, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:11', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1384, 159, '四川省建川博物馆', 2, '四川省', '成都市', '四川省成都市大邑县安仁镇迎宾路二段550号', '103.619423', '30.500385', '非国有博物馆', '一级', 2311982, 1538143, 548, 26, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.2, '08:00', '19:00', '周三,周四,周五,周六,周日', 4046, 583, '舒适', NULL, NULL, 0, '2024-04-15 21:45:11', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1385, 160, '大同市博物馆', 2, '山西省', '大同市', '山西省大同市平城区太和路506号', '113.364883', '40.088773', '文物系统国有博物馆', '一级', 176430, 563872, 22269, 10, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.4, '08:00', '19:00', '周三,周四,周五,周六,周日', 3401, 765, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:11', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1386, 161, '平津战役纪念馆', 2, '天津市', '天津市', '天津市红桥区平津道8号', '117.146944', '39.168989', '文物系统国有博物馆', '一级', 11037, 267896, 16, 1, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.6, '08:00', '19:00', '周三,周四,周五,周六,周日', 3227, 885, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:11', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1387, 162, '平顶山博物馆', 5, '河南省', '平顶山市', '河南省平顶山市新城区长安大道中段', '113.154481', '33.769839', '文物系统国有博物馆', '一级', 51479, 100000, 1836, 1, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.2, '08:00', '19:00', '周三,周四,周五,周六,周日', 3553, 938, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:11', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1388, 163, '西安大唐西市博物馆', 6, '陕西省', '西安市', '陕西省西安市莲湖区劳动南路118号', '108.907942', '34.245294', '非国有博物馆', '一级', 22521, 22622, 0, 1, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.4, '08:00', '19:00', '周三,周四,周五,周六,周日', 3631, 948, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:11', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1389, 164, '临汾市博物馆', 3, '山西省', '临汾市', '临汾市尧都区滨河西路九州广场南端', '111.485259', '36.075986', '文物系统国有博物馆', '一级', 5055, 114000, 281, 4, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 5.0, '08:00', '19:00', '周三,周四,周五,周六,周日', 4553, 671, '舒适', NULL, NULL, 0, '2024-04-15 21:45:11', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1390, 165, '东北烈士纪念馆(东北抗联博物馆、中共黑龙江历史纪念馆、革命领袖视察黑龙江纪念馆、东北抗联精神陈列馆)', 5, '黑龙江省', '哈尔滨市', '黑龙江省哈尔滨市南岗区一曼街241号', '126.642993', '45.766318', '文物系统国有博物馆', '一级', 13850, 496000, 7241, 4, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.7, '08:00', '19:00', '周三,周四,周五,周六,周日', 3456, 563, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:11', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1391, 166, '郑州博物馆', 5, '河南省', '郑州市', '河南省郑州市中原区文翰街9号', '113.555755', '34.740593', '文物系统国有博物馆', '一级', 53656, 602852, 9396, 4, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', '18888888888', 4.6, '08:00', '19:00', '周三,周四,周五,周六,周日', 4890, 672, '拥挤', '
', 'https://yyrk.hnzzmuseum.net/#/ticket/pages/index/index', 0, '2024-04-15 21:45:11', '2024-04-16 22:23:36', NULL, 'admin: import', 'admin', NULL, 0);
INSERT INTO `tb_museum` VALUES (1392, 167, '安阳博物馆', 5, '河南省', '安阳市', '安阳市文明大道东段436号安阳博物馆、图书馆综合楼', '114.392431', '36.091265', '文物系统国有博物馆', '一级', 12829, 142005, 5170, 1, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.1, '08:00', '19:00', '周三,周四,周五,周六,周日', 4097, 580, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:11', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1393, 168, '天津博物馆', 6, '天津市', '天津市', '天津市河西区平江道62号', '117.211808', '39.084981', '文物系统国有博物馆', '一级', 217638, 450783, 137904, 3, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.0, '08:00', '19:00', '周三,周四,周五,周六,周日', 4422, 667, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:11', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1394, 169, '大庆铁人王进喜纪念馆', 2, '黑龙江省', '大庆市', '黑龙江省大庆市让胡路区中原路2号', '124.88668', '46.609408', '其他行业国有博物馆', '一级', 22012, 165389, 384, 1, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.2, '08:00', '19:00', '周三,周四,周五,周六,周日', 3596, 614, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:11', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1395, 170, '西安碑林博物馆', 6, '陕西省', '西安市', '陕西省西安市碑林区三学街15号', '108.952921', '34.25366', '文物系统国有博物馆', '一级', 14405, 159036, 2264, 3, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.7, '08:00', '19:00', '周三,周四,周五,周六,周日', 4205, 754, '舒适', NULL, NULL, 0, '2024-04-15 21:45:11', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1396, 171, '新疆维吾尔自治区博物馆', 3, '新疆维吾尔自治区', '乌鲁木齐市', '乌鲁木齐市沙依巴克区西北路581号', '87.58488', '43.81977', '文物系统国有博物馆', '一级', 24606, 460000, 2581, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.7, '08:00', '19:00', '周三,周四,周五,周六,周日', 4216, 809, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:11', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1397, 172, '中央苏区(闽西)历史博物馆', 4, '福建省', '龙岩市', '龙岩市新罗区中城北环西路51号', '117.02428', '25.103', '文物系统国有博物馆', '一级', 12340, 386200, 2442, 15, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.1, '08:00', '19:00', '周三,周四,周五,周六,周日', 3613, 662, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:11', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1398, 173, '中国煤炭博物馆', 3, '山西省', '太原市', '山西省太原市迎泽西大街2号', '112.528532', '37.857103', '其他行业国有博物馆', '一级', 32219, 80000, 0, 2, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.8, '08:00', '19:00', '周三,周四,周五,周六,周日', 4289, 839, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:12', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1399, 174, '西柏坡纪念馆', 4, '河北省', '石家庄市', '河北省石家庄市平山县西柏坡村', '113.940179', '38.340105', '其他行业国有博物馆', '一级', 5850, 1769971, 164, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.8, '08:00', '19:00', '周三,周四,周五,周六,周日', 4336, 598, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:12', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1400, 175, '文化和旅游部恭王府博物馆', 6, '北京市', '北京市', '北京市西城区前海西街17号', '116.38735', '39.93578', '文物系统国有博物馆', '一级', 23658, 865197, 206, 16, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.1, '08:00', '19:00', '周三,周四,周五,周六,周日', 4020, 762, '舒适', NULL, NULL, 0, '2024-04-15 21:45:12', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1401, 176, '淄博陶瓷琉璃博物馆', 5, '山东省', '淄博市', '淄博市文化中心', '117.989454', '36.812781', '文物系统国有博物馆', '一级', 14534, 112736, 330, 2, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.4, '08:00', '19:00', '周三,周四,周五,周六,周日', 4133, 774, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:12', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1402, 177, '成都杜甫草堂博物馆', 2, '四川省', '成都市', '四川省成都市青华路37号', '104.269221', '30.883436', '文物系统国有博物馆', '一级', 27935, 662353, 1281, 16, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 5.0, '08:00', '19:00', '周三,周四,周五,周六,周日', 4774, 941, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:12', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1403, 178, '广西民族博物馆', 4, '广西壮族自治区', '南宁市', '广西壮族自治区南宁市青秀区青环路11号', '108.401553', '22.773948', '文物系统国有博物馆', '一级', 56321, 826113, 3666, 4, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.8, '08:00', '19:00', '周三,周四,周五,周六,周日', 4531, 688, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:12', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1404, 179, '宁夏回族自治区博物馆', 4, '宁夏回族自治区', '银川市', '宁夏银川市金凤区人民广场东街6号', '106.230622', '38.485287', '文物系统国有博物馆', '一级', 50957, 177549, 2771, 4, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.9, '08:00', '19:00', '周三,周四,周五,周六,周日', 3427, 782, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:12', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1405, 180, '北京汽车博物馆(北京市丰台区规划展览馆)', 5, '北京市', '北京市', '北京市丰台区南四环西路126号', '116.301733', '39.828909', '文物系统国有博物馆', '一级', 10479, 281200, 34, 6, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.2, '08:00', '19:00', '周三,周四,周五,周六,周日', 3258, 690, '舒适', NULL, NULL, 0, '2024-04-15 21:45:12', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1406, 181, '山东大学博物馆', 4, '山东省', '济南市', '山东省济南市历城区山大南路27号', '117.057122', '36.67194', '其他行业国有博物馆', '一级', 40121, 59317, 338, 4, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.7, '08:00', '19:00', '周三,周四,周五,周六,周日', 3145, 862, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:12', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1407, 182, '大连自然博物馆', 3, '辽宁省', '大连市', '大连市沙河口区黑石礁西村街40号', '121.561543', '38.870871', '其他行业国有博物馆', '一级', 203719, 232467, 14, 10, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.9, '08:00', '19:00', '周三,周四,周五,周六,周日', 3673, 785, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:12', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1408, 183, '南湖革命纪念馆', 3, '浙江省', '嘉兴市', '浙江省嘉兴市烟雨路186号', '120.761177', '30.747303', '其他行业国有博物馆', '一级', 49221, 640458, 294, 4, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.0, '08:00', '19:00', '周三,周四,周五,周六,周日', 4645, 534, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:12', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1409, 184, '河北博物院', 3, '河北省', '石家庄市', '河北省石家庄市长安区东大街4号', '114.5227', '38.040581', '文物系统国有博物馆', '一级', 100674, 612448, 19649, 10, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.0, '08:00', '19:00', '周三,周四,周五,周六,周日', 4923, 965, '舒适', NULL, NULL, 0, '2024-04-15 21:45:12', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1410, 185, '烟台市博物馆', 3, '山东省', '烟台市', '烟台市芝罘区南大街61号', '121.396742', '37.537417', '文物系统国有博物馆', '一级', 11330, 90000, 11330, 3, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.4, '08:00', '19:00', '周三,周四,周五,周六,周日', 3385, 645, '舒适', NULL, NULL, 0, '2024-04-15 21:45:12', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1411, 186, '荆州博物馆', 2, '湖北省', '荆州市', '湖北省荆州市荆州区荆中路166号', '112.180351', '30.352981', '文物系统国有博物馆', '一级', 17950, 192451, 17950, 8, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.1, '08:00', '19:00', '周三,周四,周五,周六,周日', 4532, 981, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:12', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1412, 187, '中国甲午战争博物院', 4, '山东省', '威海市', '山东省威海市刘公岛', '122.141082', '37.493787', '文物系统国有博物馆', '一级', 6180, 820916, 70, 9, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.6, '08:00', '19:00', '周三,周四,周五,周六,周日', 4779, 598, '舒适', NULL, NULL, 0, '2024-04-15 21:45:12', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1413, 188, '南京市博物总馆(南京市博物馆)', 6, '江苏省', '南京市', '南京市秦淮区朝天宫四号', '118.794792', '32.039065', '文物系统国有博物馆', '一级', 84511, 186000, 46153, 4, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.9, '08:00', '19:00', '周三,周四,周五,周六,周日', 4314, 868, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:12', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1414, 189, '云南民族博物馆', 4, '云南省', '昆明市', '云南省昆明市西山区滇池路1503号', '102.669121', '24.965098', '其他行业国有博物馆', '一级', 21928, 400200, 0, 8, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.2, '08:00', '19:00', '周三,周四,周五,周六,周日', 3489, 647, '舒适', NULL, NULL, 0, '2024-04-15 21:45:13', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1415, 190, '济南市章丘区博物馆', 5, '山东省', '济南市', '济南市章丘区双山西街文博中心博物馆', '117.520119', '36.677414', '文物系统国有博物馆', '一级', 26000, 210000, 380, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.7, '08:00', '19:00', '周三,周四,周五,周六,周日', 4447, 960, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:13', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1416, 191, '中国国家博物馆', 3, '北京市', '北京市', '北京市东城区东长安街16号', '116.401397', '39.905408', '文物系统国有博物馆', '一级', 1431493, 1630911, 302636, 3, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.3, '08:00', '19:00', '周三,周四,周五,周六,周日', 4033, 936, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:13', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1417, 192, '鄂豫皖苏区首府革命博物馆', 5, '河南省', '信阳市', '河南省新县首府路文博新村004号', '114.8774', '31.61473', '文物系统国有博物馆', '一级', 3397, 220000, 843, 2, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.8, '08:00', '19:00', '周三,周四,周五,周六,周日', 3650, 575, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:13', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1418, 193, '扬州博物馆', 3, '江苏省', '扬州市', '扬州市文昌西路468号', '119.371808', '32.390816', '文物系统国有博物馆', '一级', 143874, 180400, 1529, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.5, '08:00', '19:00', '周三,周四,周五,周六,周日', 4630, 665, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:13', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1419, 194, '开封市博物馆', 2, '河南省', '开封市', '河南省开封市龙亭区郑开大道与第六大街交叉口', '114.219734', '34.802267', '文物系统国有博物馆', '一级', 23062, 647325, 6780, 8, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.6, '08:00', '19:00', '周三,周四,周五,周六,周日', 4043, 602, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:13', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1420, 195, '广东省博物馆(广州鲁迅纪念馆)', 6, '广东省', '广州市', '广州市天河区珠江东路2号', '113.326421', '23.114772', '文物系统国有博物馆', '一级', 235480, 3359700, 20678, 14, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.6, '08:00', '19:00', '周三,周四,周五,周六,周日', 3760, 724, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:13', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1421, 196, '八路军太行纪念馆', 3, '山西省', '长治市', '山西省长治市武乡县太行街363号', '112.85665', '36.83221', '文物系统国有博物馆', '一级', 8201, 60000, 488, 2, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.0, '08:00', '19:00', '周三,周四,周五,周六,周日', 3672, 598, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:13', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1422, 197, '内蒙古博物院', 4, '内蒙古自治区', '呼和浩特市', '呼和浩特市新城区新华东街27号', '111.731421', '40.835329', '文物系统国有博物馆', '一级', 150316, 347047, 5645, 9, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.6, '08:00', '19:00', '周三,周四,周五,周六,周日', 3821, 665, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:13', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1423, 198, '宁波市天一阁博物院(宁波市保国寺古建筑博物馆)', 4, '浙江省', '宁波市', '宁波市天一街10号', '121.539928', '29.87095', '文物系统国有博物馆', '一级', 58693, 320530, 3643, 16, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.6, '08:00', '19:00', '周三,周四,周五,周六,周日', 3038, 876, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:13', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1424, 199, '5·12汶川特大地震纪念馆', 6, '四川省', '绵阳市', '四川绵阳北川羌族自治县曲山镇', '104.45231', '31.806186', '其他行业国有博物馆', '一级', 61059, 682206, 88, 1, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.4, '08:00', '19:00', '周三,周四,周五,周六,周日', 3181, 750, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:13', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1425, 200, '江西省博物馆', 2, '江西省', '南昌市', ' 南昌市赣江北大道698号', '115.881747', '28.705937', '文物系统国有博物馆', '一级', 60168, 950896, 10728, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.2, '08:00', '19:00', '周三,周四,周五,周六,周日', 4283, 911, '舒适', NULL, NULL, 0, '2024-04-15 21:45:13', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1426, 201, '中国(海南)南海博物馆', 3, '海南省', '琼海市', '海南省琼海市潭门镇博物馆路1号中国(海南)南海博物馆', '110.607263', '19.228463', '文物系统国有博物馆', '一级', 93676, 189077, 961, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.2, '08:00', '19:00', '周三,周四,周五,周六,周日', 3785, 751, '舒适', NULL, NULL, 0, '2024-04-15 21:45:13', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1427, 202, '周口店北京人遗址博物馆', 5, '北京市', '北京市', '北京市房山区周口店大街13号', '115.93727', '39.68908', '文物系统国有博物馆', '一级', 7449, 133686, 182, 2, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.8, '08:00', '19:00', '周三,周四,周五,周六,周日', 3027, 669, '舒适', NULL, NULL, 0, '2024-04-15 21:45:13', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1428, 203, '无锡博物院', 4, '江苏省', '无锡市', '无锡市钟书路100号', '120.305869', '31.549618', '文物系统国有博物馆', '一级', 34750, 540970, 1449, 15, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 4.8, '08:00', '19:00', '周三,周四,周五,周六,周日', 4095, 894, '拥挤', NULL, NULL, 0, '2024-04-15 21:45:13', NULL, NULL, 'admin: import', NULL, NULL, 0);
INSERT INTO `tb_museum` VALUES (1429, 204, '成都博物馆(成都中国皮影博物馆)', 5, '四川省', '成都市', '四川成都青羊区成都市青羊区小河街1号', '104.06376', '30.657331', '文物系统国有博物馆', '一级', 218289, 1404735, 1399, 5, 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', 'https://image.xnszz.com/2024/04/14/4d93ae8be10a7a318bf6b1deefa5dfe8_20240414180114A004.png', NULL, 5.0, '08:00', '19:00', '周三,周四,周五,周六,周日', 4976, 700, '较拥挤', NULL, NULL, 0, '2024-04-15 21:45:14', NULL, NULL, 'admin: import', NULL, NULL, 0);
-- ----------------------------
-- Table structure for tb_museum_class
-- ----------------------------
DROP TABLE IF EXISTS `tb_museum_class`;
CREATE TABLE `tb_museum_class` (
`museum_class_id` bigint NOT NULL AUTO_INCREMENT COMMENT '博物馆分类ID',
`class_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '分类名称',
`english_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '英文名',
`class_color` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '背景色',
`class_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '图片',
`sort` int NULL DEFAULT NULL COMMENT '排序',
`status` int NULL DEFAULT NULL COMMENT '状态(0-显示,1-隐藏)',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`delete_time` datetime(0) NULL DEFAULT NULL COMMENT '删除时间',
`create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '创建者',
`update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '更新者',
`delete_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '删除者',
`del_flag` int NULL DEFAULT NULL COMMENT '删除标记(0-正常,1-删除)',
PRIMARY KEY (`museum_class_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 7 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '博物馆分类' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tb_museum_class
-- ----------------------------
INSERT INTO `tb_museum_class` VALUES (1, '历史类', 'History', '#D0BB8F', 'https://image.xnszz.com/2024/04/15/5d029413db4e275e57b44e05f8e25c1b_20240415211901A011.png', 0, 0, '2024-04-14 03:12:20', '2024-04-15 21:19:04', '2024-04-14 00:00:00', 'admin', 'admin', 'admin', 0);
INSERT INTO `tb_museum_class` VALUES (2, '艺术类 ', 'Artistic', '#A3A9C4', 'https://image.xnszz.com/2024/04/15/f055136dede90049e87c435de788192b_20240415211954A012.png', 1, 0, '2024-04-14 03:12:44', '2024-04-15 21:19:55', '2024-04-14 00:00:00', 'admin', 'admin', 'admin', 0);
INSERT INTO `tb_museum_class` VALUES (3, '综合类', 'Comprehensive', '#99AD98', 'https://image.xnszz.com/2024/04/15/69e5b9cdb2020e3125d9e8aa58c1bc8e_20240415211959A013.png', 2, 0, '2024-04-14 03:13:06', '2024-04-15 21:20:00', '2024-04-14 00:00:00', 'admin', 'admin', 'admin', 0);
INSERT INTO `tb_museum_class` VALUES (4, '科学类', 'Science', '#7C96AB', 'https://image.xnszz.com/2024/04/15/7acf36b5cef0f7e0739aeddb3e8d0a05_20240415212004A014.png', 3, 0, '2024-04-14 03:13:23', '2024-04-15 21:20:05', '2024-04-14 00:00:00', 'admin', 'admin', 'admin', 0);
INSERT INTO `tb_museum_class` VALUES (5, '民俗类', 'Folklore', '#A3A5A7', 'https://image.xnszz.com/2024/04/15/44d23664d376934e4122f4109baf3692_20240415212009A015.png', 4, 0, '2024-04-14 03:13:40', '2024-04-15 21:20:10', '2024-04-14 00:00:00', 'admin', 'admin', 'admin', 0);
INSERT INTO `tb_museum_class` VALUES (6, '纪念类', 'Anniversary', '#A99880', 'https://image.xnszz.com/2024/04/15/a47b3e3c17f5865828d54aeb3c2da670_20240415212014A016.png', 5, 0, '2024-04-14 03:14:00', '2024-04-15 21:20:16', '2024-04-14 00:00:00', 'admin', 'admin', 'admin', 0);
-- ----------------------------
-- Table structure for tb_museum_mechanism
-- ----------------------------
DROP TABLE IF EXISTS `tb_museum_mechanism`;
CREATE TABLE `tb_museum_mechanism` (
`museum_mechanism_id` bigint NOT NULL AUTO_INCREMENT COMMENT '博物馆机构',
`mechanism_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '机构名称',
`sort` int NULL DEFAULT NULL COMMENT '排序',
`status` int NULL DEFAULT NULL COMMENT '状态()0-显示,1-隐藏',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`delete_time` datetime(0) NULL DEFAULT NULL COMMENT '删除时间',
`create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '创建者',
`update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '更新者',
`delete_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '删除者',
`del_flag` int NULL DEFAULT NULL COMMENT '删除标记(0-正常,1-删除)',
PRIMARY KEY (`museum_mechanism_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '博物馆机构' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tb_museum_mechanism
-- ----------------------------
INSERT INTO `tb_museum_mechanism` VALUES (1, '文物系统国有博物馆', 0, 0, '2024-04-14 21:40:14', '2024-04-14 21:42:24', NULL, 'admin', 'admin', NULL, 0);
INSERT INTO `tb_museum_mechanism` VALUES (2, '其他行业国有博物馆', 1, 0, '2024-04-14 21:40:20', '2024-04-14 21:42:27', NULL, 'admin', 'admin', NULL, 0);
INSERT INTO `tb_museum_mechanism` VALUES (3, '非国有博物馆', 2, 0, '2024-04-14 21:40:25', NULL, NULL, 'admin', NULL, NULL, 0);
-- ----------------------------
-- Table structure for tb_notice
-- ----------------------------
DROP TABLE IF EXISTS `tb_notice`;
CREATE TABLE `tb_notice` (
`notice_id` bigint NOT NULL AUTO_INCREMENT COMMENT '公告ID',
`notice_title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '标题',
`notice_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '展示图',
`notice_intro` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '简介',
`museum_id` bigint NULL DEFAULT NULL COMMENT '博物馆ID',
`view_count` int NULL DEFAULT NULL COMMENT '浏览量',
`notice_content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '公告内容',
`status` int NULL DEFAULT NULL COMMENT '状态(0-显示,1-隐藏)',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`delete_time` datetime(0) NULL DEFAULT NULL COMMENT '删除时间',
`create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '创建者',
`update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '更新者',
`delete_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '删除者',
`del_flag` int NULL DEFAULT NULL COMMENT '删除标记(0-正常,1-删除)',
PRIMARY KEY (`notice_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 3 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '活动公告' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tb_notice
-- ----------------------------
INSERT INTO `tb_notice` VALUES (1, '注意查收|来自\"文物鉴赏家\" 的邀请函', 'https://image.xnszz.com/2024/04/17/a0afdc4474ac2438fb57452160d77ef9_20240417141213A012.jpg', NULL, 1, 4, 'wfwf
', 0, '2024-04-13 14:34:03', '2024-04-17 14:12:16', '2024-04-13 00:00:00', 'admin', 'admin', 'admin', 0);
INSERT INTO `tb_notice` VALUES (2, '燃爆五一!近200项文化盛宴等 你来!', 'https://image.xnszz.com/2024/04/17/1e91d4d5453afb319b56d762de2a7d3e_20240417141202A011.jpg', NULL, 1, 7, '
', 0, '2024-04-13 14:34:22', '2024-04-17 14:12:06', '2024-04-13 00:00:00', 'admin', 'admin', 'admin', 0);
-- ----------------------------
-- Table structure for tb_region
-- ----------------------------
DROP TABLE IF EXISTS `tb_region`;
CREATE TABLE `tb_region` (
`id` int NOT NULL COMMENT '主键id',
`pid` int NULL DEFAULT NULL COMMENT '上级id',
`shortname` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '简称',
`name` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '名称',
`merger_name` varchar(765) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '全程',
`type` tinyint NULL DEFAULT NULL COMMENT '类型(1-省, 2-市, 3-区县)',
`pinyin` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '拼音',
`phone_code` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '电话区号',
`code` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '邮编',
`first` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '拼音首字母',
`lng` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '经度',
`lat` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '纬度',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '省市区' ROW_FORMAT = COMPACT;
-- ----------------------------
-- Records of tb_region
-- ----------------------------
INSERT INTO `tb_region` VALUES (1, 0, '北京', '北京', '中国,北京', 1, 'beijing', '', '', 'B', '116.405285', '39.904989');
INSERT INTO `tb_region` VALUES (2, 1, '北京', '北京市', '中国,北京,北京市', 2, 'beijing', '010', '100000', 'B', '116.405285', '39.904989');
INSERT INTO `tb_region` VALUES (3, 2, '东城', '东城区', '中国,北京,北京市,东城区', 3, 'dongcheng', '010', '100010', 'D', '116.41005', '39.93157');
INSERT INTO `tb_region` VALUES (4, 2, '西城', '西城区', '中国,北京,北京市,西城区', 3, 'xicheng', '010', '100032', 'X', '116.36003', '39.9305');
INSERT INTO `tb_region` VALUES (5, 2, '朝阳', '朝阳区', '中国,北京,北京市,朝阳区', 3, 'chaoyang', '010', '100020', 'C', '116.48548', '39.9484');
INSERT INTO `tb_region` VALUES (6, 2, '丰台', '丰台区', '中国,北京,北京市,丰台区', 3, 'fengtai', '010', '100071', 'F', '116.28625', '39.8585');
INSERT INTO `tb_region` VALUES (7, 2, '石景山', '石景山区', '中国,北京,北京市,石景山区', 3, 'shijingshan', '010', '100043', 'S', '116.2229', '39.90564');
INSERT INTO `tb_region` VALUES (8, 2, '海淀', '海淀区', '中国,北京,北京市,海淀区', 3, 'haidian', '010', '100089', 'H', '116.29812', '39.95931');
INSERT INTO `tb_region` VALUES (9, 2, '门头沟', '门头沟区', '中国,北京,北京市,门头沟区', 3, 'mentougou', '010', '102300', 'M', '116.10137', '39.94043');
INSERT INTO `tb_region` VALUES (10, 2, '房山', '房山区', '中国,北京,北京市,房山区', 3, 'fangshan', '010', '102488', 'F', '116.14257', '39.74786');
INSERT INTO `tb_region` VALUES (11, 2, '通州', '通州区', '中国,北京,北京市,通州区', 3, 'tongzhou', '010', '101149', 'T', '116.65716', '39.90966');
INSERT INTO `tb_region` VALUES (12, 2, '顺义', '顺义区', '中国,北京,北京市,顺义区', 3, 'shunyi', '010', '101300', 'S', '116.65417', '40.1302');
INSERT INTO `tb_region` VALUES (13, 2, '昌平', '昌平区', '中国,北京,北京市,昌平区', 3, 'changping', '010', '102200', 'C', '116.2312', '40.22072');
INSERT INTO `tb_region` VALUES (14, 2, '大兴', '大兴区', '中国,北京,北京市,大兴区', 3, 'daxing', '010', '102600', 'D', '116.34149', '39.72668');
INSERT INTO `tb_region` VALUES (15, 2, '怀柔', '怀柔区', '中国,北京,北京市,怀柔区', 3, 'huairou', '010', '101400', 'H', '116.63168', '40.31602');
INSERT INTO `tb_region` VALUES (16, 2, '平谷', '平谷区', '中国,北京,北京市,平谷区', 3, 'pinggu', '010', '101200', 'P', '117.12133', '40.14056');
INSERT INTO `tb_region` VALUES (17, 2, '密云', '密云县', '中国,北京,北京市,密云县', 3, 'miyun', '010', '101500', 'M', '116.84295', '40.37618');
INSERT INTO `tb_region` VALUES (18, 2, '延庆', '延庆县', '中国,北京,北京市,延庆县', 3, 'yanqing', '010', '102100', 'Y', '115.97494', '40.45672');
INSERT INTO `tb_region` VALUES (19, 0, '天津', '天津', '中国,天津', 1, 'tianjin', '', '', 'T', '117.190182', '39.125596');
INSERT INTO `tb_region` VALUES (20, 19, '天津', '天津市', '中国,天津,天津市', 2, 'tianjin', '022', '300000', 'T', '117.190182', '39.125596');
INSERT INTO `tb_region` VALUES (21, 20, '和平', '和平区', '中国,天津,天津市,和平区', 3, 'heping', '022', '300041', 'H', '117.21456', '39.11718');
INSERT INTO `tb_region` VALUES (22, 20, '河东', '河东区', '中国,天津,天津市,河东区', 3, 'hedong', '022', '300171', 'H', '117.22562', '39.12318');
INSERT INTO `tb_region` VALUES (23, 20, '河西', '河西区', '中国,天津,天津市,河西区', 3, 'hexi', '022', '300202', 'H', '117.22327', '39.10959');
INSERT INTO `tb_region` VALUES (24, 20, '南开', '南开区', '中国,天津,天津市,南开区', 3, 'nankai', '022', '300110', 'N', '117.15074', '39.13821');
INSERT INTO `tb_region` VALUES (25, 20, '河北', '河北区', '中国,天津,天津市,河北区', 3, 'hebei', '022', '300143', 'H', '117.19697', '39.14816');
INSERT INTO `tb_region` VALUES (26, 20, '红桥', '红桥区', '中国,天津,天津市,红桥区', 3, 'hongqiao', '022', '300131', 'H', '117.15145', '39.16715');
INSERT INTO `tb_region` VALUES (27, 20, '东丽', '东丽区', '中国,天津,天津市,东丽区', 3, 'dongli', '022', '300300', 'D', '117.31436', '39.0863');
INSERT INTO `tb_region` VALUES (28, 20, '西青', '西青区', '中国,天津,天津市,西青区', 3, 'xiqing', '022', '300380', 'X', '117.00927', '39.14123');
INSERT INTO `tb_region` VALUES (29, 20, '津南', '津南区', '中国,天津,天津市,津南区', 3, 'jinnan', '022', '300350', 'J', '117.38537', '38.99139');
INSERT INTO `tb_region` VALUES (30, 20, '北辰', '北辰区', '中国,天津,天津市,北辰区', 3, 'beichen', '022', '300400', 'B', '117.13217', '39.22131');
INSERT INTO `tb_region` VALUES (31, 20, '武清', '武清区', '中国,天津,天津市,武清区', 3, 'wuqing', '022', '301700', 'W', '117.04443', '39.38415');
INSERT INTO `tb_region` VALUES (32, 20, '宝坻', '宝坻区', '中国,天津,天津市,宝坻区', 3, 'baodi', '022', '301800', 'B', '117.3103', '39.71761');
INSERT INTO `tb_region` VALUES (33, 20, '滨海新区', '滨海新区', '中国,天津,天津市,滨海新区', 3, 'binhaixinqu', '022', '300451', 'B', '117.70162', '39.02668');
INSERT INTO `tb_region` VALUES (34, 20, '宁河', '宁河县', '中国,天津,天津市,宁河县', 3, 'ninghe', '022', '301500', 'N', '117.8255', '39.33048');
INSERT INTO `tb_region` VALUES (35, 20, '静海', '静海县', '中国,天津,天津市,静海县', 3, 'jinghai', '022', '301600', 'J', '116.97436', '38.94582');
INSERT INTO `tb_region` VALUES (36, 20, '蓟县', '蓟县', '中国,天津,天津市,蓟县', 3, 'jixian', '022', '301900', 'J', '117.40799', '40.04567');
INSERT INTO `tb_region` VALUES (37, 0, '河北', '河北省', '中国,河北省', 1, 'hebei', '', '', 'H', '114.502461', '38.045474');
INSERT INTO `tb_region` VALUES (38, 37, '石家庄', '石家庄市', '中国,河北省,石家庄市', 2, 'shijiazhuang', '0311', '050011', 'S', '114.502461', '38.045474');
INSERT INTO `tb_region` VALUES (39, 38, '长安', '长安区', '中国,河北省,石家庄市,长安区', 3, 'chang\'an', '0311', '050011', 'C', '114.53906', '38.03665');
INSERT INTO `tb_region` VALUES (40, 38, '桥西', '桥西区', '中国,河北省,石家庄市,桥西区', 3, 'qiaoxi', '0311', '050091', 'Q', '114.46977', '38.03221');
INSERT INTO `tb_region` VALUES (41, 38, '新华', '新华区', '中国,河北省,石家庄市,新华区', 3, 'xinhua', '0311', '050051', 'X', '114.46326', '38.05088');
INSERT INTO `tb_region` VALUES (42, 38, '井陉矿区', '井陉矿区', '中国,河北省,石家庄市,井陉矿区', 3, 'jingxingkuangqu', '0311', '050100', 'J', '114.06518', '38.06705');
INSERT INTO `tb_region` VALUES (43, 38, '裕华', '裕华区', '中国,河北省,石家庄市,裕华区', 3, 'yuhua', '0311', '050031', 'Y', '114.53115', '38.00604');
INSERT INTO `tb_region` VALUES (44, 38, '藁城', '藁城区', '中国,河北省,石家庄市,藁城区', 3, 'gaocheng', '0311', '052160', 'G', '114.84671', '38.02162');
INSERT INTO `tb_region` VALUES (45, 38, '鹿泉', '鹿泉区', '中国,河北省,石家庄市,鹿泉区', 3, 'luquan', '0311', '050200', 'L', '114.31347', '38.08782');
INSERT INTO `tb_region` VALUES (46, 38, '栾城', '栾城区', '中国,河北省,石家庄市,栾城区', 3, 'luancheng', '0311', '051430', 'L', '114.64834', '37.90022');
INSERT INTO `tb_region` VALUES (47, 38, '井陉', '井陉县', '中国,河北省,石家庄市,井陉县', 3, 'jingxing', '0311', '050300', 'J', '114.14257', '38.03688');
INSERT INTO `tb_region` VALUES (48, 38, '正定', '正定县', '中国,河北省,石家庄市,正定县', 3, 'zhengding', '0311', '050800', 'Z', '114.57296', '38.14445');
INSERT INTO `tb_region` VALUES (49, 38, '行唐', '行唐县', '中国,河北省,石家庄市,行唐县', 3, 'xingtang', '0311', '050600', 'X', '114.55316', '38.43654');
INSERT INTO `tb_region` VALUES (50, 38, '灵寿', '灵寿县', '中国,河北省,石家庄市,灵寿县', 3, 'lingshou', '0311', '050500', 'L', '114.38259', '38.30845');
INSERT INTO `tb_region` VALUES (51, 38, '高邑', '高邑县', '中国,河北省,石家庄市,高邑县', 3, 'gaoyi', '0311', '051330', 'G', '114.61142', '37.61556');
INSERT INTO `tb_region` VALUES (52, 38, '深泽', '深泽县', '中国,河北省,石家庄市,深泽县', 3, 'shenze', '0311', '052560', 'S', '115.20358', '38.18353');
INSERT INTO `tb_region` VALUES (53, 38, '赞皇', '赞皇县', '中国,河北省,石家庄市,赞皇县', 3, 'zanhuang', '0311', '051230', 'Z', '114.38775', '37.66135');
INSERT INTO `tb_region` VALUES (54, 38, '无极', '无极县', '中国,河北省,石家庄市,无极县', 3, 'wuji', '0311', '052460', 'W', '114.97509', '38.17653');
INSERT INTO `tb_region` VALUES (55, 38, '平山', '平山县', '中国,河北省,石家庄市,平山县', 3, 'pingshan', '0311', '050400', 'P', '114.186', '38.25994');
INSERT INTO `tb_region` VALUES (56, 38, '元氏', '元氏县', '中国,河北省,石家庄市,元氏县', 3, 'yuanshi', '0311', '051130', 'Y', '114.52539', '37.76668');
INSERT INTO `tb_region` VALUES (57, 38, '赵县', '赵县', '中国,河北省,石家庄市,赵县', 3, 'zhaoxian', '0311', '051530', 'Z', '114.77612', '37.75628');
INSERT INTO `tb_region` VALUES (58, 38, '辛集', '辛集市', '中国,河北省,石家庄市,辛集市', 3, 'xinji', '0311', '052360', 'X', '115.20626', '37.94079');
INSERT INTO `tb_region` VALUES (59, 38, '晋州', '晋州市', '中国,河北省,石家庄市,晋州市', 3, 'jinzhou', '0311', '052260', 'J', '115.04348', '38.03135');
INSERT INTO `tb_region` VALUES (60, 38, '新乐', '新乐市', '中国,河北省,石家庄市,新乐市', 3, 'xinle', '0311', '050700', 'X', '114.68985', '38.34417');
INSERT INTO `tb_region` VALUES (61, 37, '唐山', '唐山市', '中国,河北省,唐山市', 2, 'tangshan', '0315', '063000', 'T', '118.175393', '39.635113');
INSERT INTO `tb_region` VALUES (62, 61, '路南', '路南区', '中国,河北省,唐山市,路南区', 3, 'lunan', '0315', '063000', 'L', '118.15431', '39.62505');
INSERT INTO `tb_region` VALUES (63, 61, '路北', '路北区', '中国,河北省,唐山市,路北区', 3, 'lubei', '0315', '063000', 'L', '118.20079', '39.62436');
INSERT INTO `tb_region` VALUES (64, 61, '古冶', '古冶区', '中国,河北省,唐山市,古冶区', 3, 'guye', '0315', '063100', 'G', '118.45803', '39.71993');
INSERT INTO `tb_region` VALUES (65, 61, '开平', '开平区', '中国,河北省,唐山市,开平区', 3, 'kaiping', '0315', '063021', 'K', '118.26171', '39.67128');
INSERT INTO `tb_region` VALUES (66, 61, '丰南', '丰南区', '中国,河北省,唐山市,丰南区', 3, 'fengnan', '0315', '063300', 'F', '118.11282', '39.56483');
INSERT INTO `tb_region` VALUES (67, 61, '丰润', '丰润区', '中国,河北省,唐山市,丰润区', 3, 'fengrun', '0315', '064000', 'F', '118.12976', '39.8244');
INSERT INTO `tb_region` VALUES (68, 61, '曹妃甸', '曹妃甸区', '中国,河北省,唐山市,曹妃甸区', 3, 'caofeidian', '0315', '063200', 'C', '118.460379', '39.273070');
INSERT INTO `tb_region` VALUES (69, 61, '滦县', '滦县', '中国,河北省,唐山市,滦县', 3, 'luanxian', '0315', '063700', 'L', '118.70346', '39.74056');
INSERT INTO `tb_region` VALUES (70, 61, '滦南', '滦南县', '中国,河北省,唐山市,滦南县', 3, 'luannan', '0315', '063500', 'L', '118.6741', '39.5039');
INSERT INTO `tb_region` VALUES (71, 61, '乐亭', '乐亭县', '中国,河北省,唐山市,乐亭县', 3, 'laoting', '0315', '063600', 'L', '118.9125', '39.42561');
INSERT INTO `tb_region` VALUES (72, 61, '迁西', '迁西县', '中国,河北省,唐山市,迁西县', 3, 'qianxi', '0315', '064300', 'Q', '118.31616', '40.14587');
INSERT INTO `tb_region` VALUES (73, 61, '玉田', '玉田县', '中国,河北省,唐山市,玉田县', 3, 'yutian', '0315', '064100', 'Y', '117.7388', '39.90049');
INSERT INTO `tb_region` VALUES (74, 61, '遵化', '遵化市', '中国,河北省,唐山市,遵化市', 3, 'zunhua', '0315', '064200', 'Z', '117.96444', '40.18741');
INSERT INTO `tb_region` VALUES (75, 61, '迁安', '迁安市', '中国,河北省,唐山市,迁安市', 3, 'qian\'an', '0315', '064400', 'Q', '118.70068', '39.99833');
INSERT INTO `tb_region` VALUES (76, 37, '秦皇岛', '秦皇岛市', '中国,河北省,秦皇岛市', 2, 'qinhuangdao', '0335', '066000', 'Q', '119.586579', '39.942531');
INSERT INTO `tb_region` VALUES (77, 76, '海港', '海港区', '中国,河北省,秦皇岛市,海港区', 3, 'haigang', '0335', '066000', 'H', '119.61046', '39.9345');
INSERT INTO `tb_region` VALUES (78, 76, '山海关', '山海关区', '中国,河北省,秦皇岛市,山海关区', 3, 'shanhaiguan', '0335', '066200', 'S', '119.77563', '39.97869');
INSERT INTO `tb_region` VALUES (79, 76, '北戴河', '北戴河区', '中国,河北省,秦皇岛市,北戴河区', 3, 'beidaihe', '0335', '066100', 'B', '119.48388', '39.83408');
INSERT INTO `tb_region` VALUES (80, 76, '青龙', '青龙满族自治县', '中国,河北省,秦皇岛市,青龙满族自治县', 3, 'qinglong', '0335', '066500', 'Q', '118.95242', '40.40743');
INSERT INTO `tb_region` VALUES (81, 76, '昌黎', '昌黎县', '中国,河北省,秦皇岛市,昌黎县', 3, 'changli', '0335', '066600', 'C', '119.16595', '39.70884');
INSERT INTO `tb_region` VALUES (82, 76, '抚宁', '抚宁县', '中国,河北省,秦皇岛市,抚宁县', 3, 'funing', '0335', '066300', 'F', '119.24487', '39.87538');
INSERT INTO `tb_region` VALUES (83, 76, '卢龙', '卢龙县', '中国,河北省,秦皇岛市,卢龙县', 3, 'lulong', '0335', '066400', 'L', '118.89288', '39.89176');
INSERT INTO `tb_region` VALUES (84, 37, '邯郸', '邯郸市', '中国,河北省,邯郸市', 2, 'handan', '0310', '056002', 'H', '114.490686', '36.612273');
INSERT INTO `tb_region` VALUES (85, 84, '邯山', '邯山区', '中国,河北省,邯郸市,邯山区', 3, 'hanshan', '0310', '056001', 'H', '114.48375', '36.60006');
INSERT INTO `tb_region` VALUES (86, 84, '丛台', '丛台区', '中国,河北省,邯郸市,丛台区', 3, 'congtai', '0310', '056002', 'C', '114.49343', '36.61847');
INSERT INTO `tb_region` VALUES (87, 84, '复兴', '复兴区', '中国,河北省,邯郸市,复兴区', 3, 'fuxing', '0310', '056003', 'F', '114.45928', '36.61134');
INSERT INTO `tb_region` VALUES (88, 84, '峰峰矿区', '峰峰矿区', '中国,河北省,邯郸市,峰峰矿区', 3, 'fengfengkuangqu', '0310', '056200', 'F', '114.21148', '36.41937');
INSERT INTO `tb_region` VALUES (89, 84, '邯郸', '邯郸县', '中国,河北省,邯郸市,邯郸县', 3, 'handan', '0310', '056101', 'H', '114.53103', '36.59385');
INSERT INTO `tb_region` VALUES (90, 84, '临漳', '临漳县', '中国,河北省,邯郸市,临漳县', 3, 'linzhang', '0310', '056600', 'L', '114.6195', '36.33461');
INSERT INTO `tb_region` VALUES (91, 84, '成安', '成安县', '中国,河北省,邯郸市,成安县', 3, 'cheng\'an', '0310', '056700', 'C', '114.66995', '36.44411');
INSERT INTO `tb_region` VALUES (92, 84, '大名', '大名县', '中国,河北省,邯郸市,大名县', 3, 'daming', '0310', '056900', 'D', '115.15362', '36.27994');
INSERT INTO `tb_region` VALUES (93, 84, '涉县', '涉县', '中国,河北省,邯郸市,涉县', 3, 'shexian', '0310', '056400', 'S', '113.69183', '36.58072');
INSERT INTO `tb_region` VALUES (94, 84, '磁县', '磁县', '中国,河北省,邯郸市,磁县', 3, 'cixian', '0310', '056500', 'C', '114.37387', '36.37392');
INSERT INTO `tb_region` VALUES (95, 84, '肥乡', '肥乡县', '中国,河北省,邯郸市,肥乡县', 3, 'feixiang', '0310', '057550', 'F', '114.79998', '36.54807');
INSERT INTO `tb_region` VALUES (96, 84, '永年', '永年县', '中国,河北省,邯郸市,永年县', 3, 'yongnian', '0310', '057150', 'Y', '114.48925', '36.78356');
INSERT INTO `tb_region` VALUES (97, 84, '邱县', '邱县', '中国,河北省,邯郸市,邱县', 3, 'qiuxian', '0310', '057450', 'Q', '115.17407', '36.82082');
INSERT INTO `tb_region` VALUES (98, 84, '鸡泽', '鸡泽县', '中国,河北省,邯郸市,鸡泽县', 3, 'jize', '0310', '057350', 'J', '114.8742', '36.92374');
INSERT INTO `tb_region` VALUES (99, 84, '广平', '广平县', '中国,河北省,邯郸市,广平县', 3, 'guangping', '0310', '057650', 'G', '114.94653', '36.48046');
INSERT INTO `tb_region` VALUES (100, 84, '馆陶', '馆陶县', '中国,河北省,邯郸市,馆陶县', 3, 'guantao', '0310', '057750', 'G', '115.29913', '36.53719');
INSERT INTO `tb_region` VALUES (101, 84, '魏县', '魏县', '中国,河北省,邯郸市,魏县', 3, 'weixian', '0310', '056800', 'W', '114.93518', '36.36171');
INSERT INTO `tb_region` VALUES (102, 84, '曲周', '曲周县', '中国,河北省,邯郸市,曲周县', 3, 'quzhou', '0310', '057250', 'Q', '114.95196', '36.77671');
INSERT INTO `tb_region` VALUES (103, 84, '武安', '武安市', '中国,河北省,邯郸市,武安市', 3, 'wu\'an', '0310', '056300', 'W', '114.20153', '36.69281');
INSERT INTO `tb_region` VALUES (104, 37, '邢台', '邢台市', '中国,河北省,邢台市', 2, 'xingtai', '0319', '054001', 'X', '114.508851', '37.0682');
INSERT INTO `tb_region` VALUES (105, 104, '桥东', '桥东区', '中国,河北省,邢台市,桥东区', 3, 'qiaodong', '0319', '054001', 'Q', '114.50725', '37.06801');
INSERT INTO `tb_region` VALUES (106, 104, '桥西', '桥西区', '中国,河北省,邢台市,桥西区', 3, 'qiaoxi', '0319', '054000', 'Q', '114.46803', '37.05984');
INSERT INTO `tb_region` VALUES (107, 104, '邢台', '邢台县', '中国,河北省,邢台市,邢台县', 3, 'xingtai', '0319', '054001', 'X', '114.56575', '37.0456');
INSERT INTO `tb_region` VALUES (108, 104, '临城', '临城县', '中国,河北省,邢台市,临城县', 3, 'lincheng', '0319', '054300', 'L', '114.50387', '37.43977');
INSERT INTO `tb_region` VALUES (109, 104, '内丘', '内丘县', '中国,河北省,邢台市,内丘县', 3, 'neiqiu', '0319', '054200', 'N', '114.51212', '37.28671');
INSERT INTO `tb_region` VALUES (110, 104, '柏乡', '柏乡县', '中国,河北省,邢台市,柏乡县', 3, 'baixiang', '0319', '055450', 'B', '114.69332', '37.48242');
INSERT INTO `tb_region` VALUES (111, 104, '隆尧', '隆尧县', '中国,河北省,邢台市,隆尧县', 3, 'longyao', '0319', '055350', 'L', '114.77615', '37.35351');
INSERT INTO `tb_region` VALUES (112, 104, '任县', '任县', '中国,河北省,邢台市,任县', 3, 'renxian', '0319', '055150', 'R', '114.6842', '37.12575');
INSERT INTO `tb_region` VALUES (113, 104, '南和', '南和县', '中国,河北省,邢台市,南和县', 3, 'nanhe', '0319', '054400', 'N', '114.68371', '37.00488');
INSERT INTO `tb_region` VALUES (114, 104, '宁晋', '宁晋县', '中国,河北省,邢台市,宁晋县', 3, 'ningjin', '0319', '055550', 'N', '114.92117', '37.61696');
INSERT INTO `tb_region` VALUES (115, 104, '巨鹿', '巨鹿县', '中国,河北省,邢台市,巨鹿县', 3, 'julu', '0319', '055250', 'J', '115.03524', '37.21801');
INSERT INTO `tb_region` VALUES (116, 104, '新河', '新河县', '中国,河北省,邢台市,新河县', 3, 'xinhe', '0319', '055650', 'X', '115.24987', '37.52718');
INSERT INTO `tb_region` VALUES (117, 104, '广宗', '广宗县', '中国,河北省,邢台市,广宗县', 3, 'guangzong', '0319', '054600', 'G', '115.14254', '37.0746');
INSERT INTO `tb_region` VALUES (118, 104, '平乡', '平乡县', '中国,河北省,邢台市,平乡县', 3, 'pingxiang', '0319', '054500', 'P', '115.03002', '37.06317');
INSERT INTO `tb_region` VALUES (119, 104, '威县', '威县', '中国,河北省,邢台市,威县', 3, 'weixian', '0319', '054700', 'W', '115.2637', '36.9768');
INSERT INTO `tb_region` VALUES (120, 104, '清河', '清河县', '中国,河北省,邢台市,清河县', 3, 'qinghe', '0319', '054800', 'Q', '115.66479', '37.07122');
INSERT INTO `tb_region` VALUES (121, 104, '临西', '临西县', '中国,河北省,邢台市,临西县', 3, 'linxi', '0319', '054900', 'L', '115.50097', '36.87078');
INSERT INTO `tb_region` VALUES (122, 104, '南宫', '南宫市', '中国,河北省,邢台市,南宫市', 3, 'nangong', '0319', '055750', 'N', '115.39068', '37.35799');
INSERT INTO `tb_region` VALUES (123, 104, '沙河', '沙河市', '中国,河北省,邢台市,沙河市', 3, 'shahe', '0319', '054100', 'S', '114.4981', '36.8577');
INSERT INTO `tb_region` VALUES (124, 37, '保定', '保定市', '中国,河北省,保定市', 2, 'baoding', '0312', '071052', 'B', '115.482331', '38.867657');
INSERT INTO `tb_region` VALUES (125, 124, '新市', '新市区', '中国,河北省,保定市,新市区', 3, 'xinshi', '0312', '071051', 'X', '115.4587', '38.87751');
INSERT INTO `tb_region` VALUES (126, 124, '北市', '北市区', '中国,河北省,保定市,北市区', 3, 'beishi', '0312', '071000', 'B', '115.49715', '38.88322');
INSERT INTO `tb_region` VALUES (127, 124, '南市', '南市区', '中国,河北省,保定市,南市区', 3, 'nanshi', '0312', '071001', 'N', '115.52859', '38.85455');
INSERT INTO `tb_region` VALUES (128, 124, '满城', '满城县', '中国,河北省,保定市,满城县', 3, 'mancheng', '0312', '072150', 'M', '115.32296', '38.94972');
INSERT INTO `tb_region` VALUES (129, 124, '清苑', '清苑县', '中国,河北省,保定市,清苑县', 3, 'qingyuan', '0312', '071100', 'Q', '115.49267', '38.76709');
INSERT INTO `tb_region` VALUES (130, 124, '涞水', '涞水县', '中国,河北省,保定市,涞水县', 3, 'laishui', '0312', '074100', 'L', '115.71517', '39.39404');
INSERT INTO `tb_region` VALUES (131, 124, '阜平', '阜平县', '中国,河北省,保定市,阜平县', 3, 'fuping', '0312', '073200', 'F', '114.19683', '38.84763');
INSERT INTO `tb_region` VALUES (132, 124, '徐水', '徐水县', '中国,河北省,保定市,徐水县', 3, 'xushui', '0312', '072550', 'X', '115.65829', '39.02099');
INSERT INTO `tb_region` VALUES (133, 124, '定兴', '定兴县', '中国,河北省,保定市,定兴县', 3, 'dingxing', '0312', '072650', 'D', '115.80786', '39.26312');
INSERT INTO `tb_region` VALUES (134, 124, '唐县', '唐县', '中国,河北省,保定市,唐县', 3, 'tangxian', '0312', '072350', 'T', '114.98516', '38.74513');
INSERT INTO `tb_region` VALUES (135, 124, '高阳', '高阳县', '中国,河北省,保定市,高阳县', 3, 'gaoyang', '0312', '071500', 'G', '115.7788', '38.70003');
INSERT INTO `tb_region` VALUES (136, 124, '容城', '容城县', '中国,河北省,保定市,容城县', 3, 'rongcheng', '0312', '071700', 'R', '115.87158', '39.0535');
INSERT INTO `tb_region` VALUES (137, 124, '涞源', '涞源县', '中国,河北省,保定市,涞源县', 3, 'laiyuan', '0312', '074300', 'L', '114.69128', '39.35388');
INSERT INTO `tb_region` VALUES (138, 124, '望都', '望都县', '中国,河北省,保定市,望都县', 3, 'wangdu', '0312', '072450', 'W', '115.1567', '38.70996');
INSERT INTO `tb_region` VALUES (139, 124, '安新', '安新县', '中国,河北省,保定市,安新县', 3, 'anxin', '0312', '071600', 'A', '115.93557', '38.93532');
INSERT INTO `tb_region` VALUES (140, 124, '易县', '易县', '中国,河北省,保定市,易县', 3, 'yixian', '0312', '074200', 'Y', '115.4981', '39.34885');
INSERT INTO `tb_region` VALUES (141, 124, '曲阳', '曲阳县', '中国,河北省,保定市,曲阳县', 3, 'quyang', '0312', '073100', 'Q', '114.70123', '38.62154');
INSERT INTO `tb_region` VALUES (142, 124, '蠡县', '蠡县', '中国,河北省,保定市,蠡县', 3, 'lixian', '0312', '071400', 'L', '115.57717', '38.48974');
INSERT INTO `tb_region` VALUES (143, 124, '顺平', '顺平县', '中国,河北省,保定市,顺平县', 3, 'shunping', '0312', '072250', 'S', '115.1347', '38.83854');
INSERT INTO `tb_region` VALUES (144, 124, '博野', '博野县', '中国,河北省,保定市,博野县', 3, 'boye', '0312', '071300', 'B', '115.47033', '38.4564');
INSERT INTO `tb_region` VALUES (145, 124, '雄县', '雄县', '中国,河北省,保定市,雄县', 3, 'xiongxian', '0312', '071800', 'X', '116.10873', '38.99442');
INSERT INTO `tb_region` VALUES (146, 124, '涿州', '涿州市', '中国,河北省,保定市,涿州市', 3, 'zhuozhou', '0312', '072750', 'Z', '115.98062', '39.48622');
INSERT INTO `tb_region` VALUES (147, 124, '定州', '定州市', '中国,河北省,保定市,定州市', 3, 'dingzhou', '0312', '073000', 'D', '114.9902', '38.51623');
INSERT INTO `tb_region` VALUES (148, 124, '安国', '安国市', '中国,河北省,保定市,安国市', 3, 'anguo', '0312', '071200', 'A', '115.32321', '38.41391');
INSERT INTO `tb_region` VALUES (149, 124, '高碑店', '高碑店市', '中国,河北省,保定市,高碑店市', 3, 'gaobeidian', '0312', '074000', 'G', '115.87368', '39.32655');
INSERT INTO `tb_region` VALUES (150, 37, '张家口', '张家口市', '中国,河北省,张家口市', 2, 'zhangjiakou', '0313', '075000', 'Z', '114.884091', '40.811901');
INSERT INTO `tb_region` VALUES (151, 150, '桥东', '桥东区', '中国,河北省,张家口市,桥东区', 3, 'qiaodong', '0313', '075000', 'Q', '114.8943', '40.78844');
INSERT INTO `tb_region` VALUES (152, 150, '桥西', '桥西区', '中国,河北省,张家口市,桥西区', 3, 'qiaoxi', '0313', '075061', 'Q', '114.86962', '40.81945');
INSERT INTO `tb_region` VALUES (153, 150, '宣化', '宣化区', '中国,河北省,张家口市,宣化区', 3, 'xuanhua', '0313', '075100', 'X', '115.06543', '40.60957');
INSERT INTO `tb_region` VALUES (154, 150, '下花园', '下花园区', '中国,河北省,张家口市,下花园区', 3, 'xiahuayuan', '0313', '075300', 'X', '115.28744', '40.50236');
INSERT INTO `tb_region` VALUES (155, 150, '宣化', '宣化县', '中国,河北省,张家口市,宣化县', 3, 'xuanhua', '0313', '075100', 'X', '115.15497', '40.56618');
INSERT INTO `tb_region` VALUES (156, 150, '张北', '张北县', '中国,河北省,张家口市,张北县', 3, 'zhangbei', '0313', '076450', 'Z', '114.71432', '41.15977');
INSERT INTO `tb_region` VALUES (157, 150, '康保', '康保县', '中国,河北省,张家口市,康保县', 3, 'kangbao', '0313', '076650', 'K', '114.60031', '41.85225');
INSERT INTO `tb_region` VALUES (158, 150, '沽源', '沽源县', '中国,河北省,张家口市,沽源县', 3, 'guyuan', '0313', '076550', 'G', '115.68859', '41.66959');
INSERT INTO `tb_region` VALUES (159, 150, '尚义', '尚义县', '中国,河北省,张家口市,尚义县', 3, 'shangyi', '0313', '076750', 'S', '113.97134', '41.07782');
INSERT INTO `tb_region` VALUES (160, 150, '蔚县', '蔚县', '中国,河北省,张家口市,蔚县', 3, 'yuxian', '0313', '075700', 'W', '114.58892', '39.84067');
INSERT INTO `tb_region` VALUES (161, 150, '阳原', '阳原县', '中国,河北省,张家口市,阳原县', 3, 'yangyuan', '0313', '075800', 'Y', '114.15051', '40.10361');
INSERT INTO `tb_region` VALUES (162, 150, '怀安', '怀安县', '中国,河北省,张家口市,怀安县', 3, 'huai\'an', '0313', '076150', 'H', '114.38559', '40.67425');
INSERT INTO `tb_region` VALUES (163, 150, '万全', '万全县', '中国,河北省,张家口市,万全县', 3, 'wanquan', '0313', '076250', 'W', '114.7405', '40.76694');
INSERT INTO `tb_region` VALUES (164, 150, '怀来', '怀来县', '中国,河北省,张家口市,怀来县', 3, 'huailai', '0313', '075400', 'H', '115.51773', '40.41536');
INSERT INTO `tb_region` VALUES (165, 150, '涿鹿', '涿鹿县', '中国,河北省,张家口市,涿鹿县', 3, 'zhuolu', '0313', '075600', 'Z', '115.22403', '40.37636');
INSERT INTO `tb_region` VALUES (166, 150, '赤城', '赤城县', '中国,河北省,张家口市,赤城县', 3, 'chicheng', '0313', '075500', 'C', '115.83187', '40.91438');
INSERT INTO `tb_region` VALUES (167, 150, '崇礼', '崇礼县', '中国,河北省,张家口市,崇礼县', 3, 'chongli', '0313', '076350', 'C', '115.27993', '40.97519');
INSERT INTO `tb_region` VALUES (168, 37, '承德', '承德市', '中国,河北省,承德市', 2, 'chengde', '0314', '067000', 'C', '117.939152', '40.976204');
INSERT INTO `tb_region` VALUES (169, 168, '双桥', '双桥区', '中国,河北省,承德市,双桥区', 3, 'shuangqiao', '0314', '067000', 'S', '117.9432', '40.97466');
INSERT INTO `tb_region` VALUES (170, 168, '双滦', '双滦区', '中国,河北省,承德市,双滦区', 3, 'shuangluan', '0314', '067001', 'S', '117.74487', '40.95375');
INSERT INTO `tb_region` VALUES (171, 168, '鹰手营子矿区', '鹰手营子矿区', '中国,河北省,承德市,鹰手营子矿区', 3, 'yingshouyingzikuangqu', '0314', '067200', 'Y', '117.65985', '40.54744');
INSERT INTO `tb_region` VALUES (172, 168, '承德', '承德县', '中国,河北省,承德市,承德县', 3, 'chengde', '0314', '067400', 'C', '118.17639', '40.76985');
INSERT INTO `tb_region` VALUES (173, 168, '兴隆', '兴隆县', '中国,河北省,承德市,兴隆县', 3, 'xinglong', '0314', '067300', 'X', '117.50073', '40.41709');
INSERT INTO `tb_region` VALUES (174, 168, '平泉', '平泉县', '中国,河北省,承德市,平泉县', 3, 'pingquan', '0314', '067500', 'P', '118.70196', '41.01839');
INSERT INTO `tb_region` VALUES (175, 168, '滦平', '滦平县', '中国,河北省,承德市,滦平县', 3, 'luanping', '0314', '068250', 'L', '117.33276', '40.94148');
INSERT INTO `tb_region` VALUES (176, 168, '隆化', '隆化县', '中国,河北省,承德市,隆化县', 3, 'longhua', '0314', '068150', 'L', '117.7297', '41.31412');
INSERT INTO `tb_region` VALUES (177, 168, '丰宁', '丰宁满族自治县', '中国,河北省,承德市,丰宁满族自治县', 3, 'fengning', '0314', '068350', 'F', '116.6492', '41.20481');
INSERT INTO `tb_region` VALUES (178, 168, '宽城', '宽城满族自治县', '中国,河北省,承德市,宽城满族自治县', 3, 'kuancheng', '0314', '067600', 'K', '118.49176', '40.60829');
INSERT INTO `tb_region` VALUES (179, 168, '围场', '围场满族蒙古族自治县', '中国,河北省,承德市,围场满族蒙古族自治县', 3, 'weichang', '0314', '068450', 'W', '117.7601', '41.94368');
INSERT INTO `tb_region` VALUES (180, 37, '沧州', '沧州市', '中国,河北省,沧州市', 2, 'cangzhou', '0317', '061001', 'C', '116.857461', '38.310582');
INSERT INTO `tb_region` VALUES (181, 180, '新华', '新华区', '中国,河北省,沧州市,新华区', 3, 'xinhua', '0317', '061000', 'X', '116.86643', '38.31438');
INSERT INTO `tb_region` VALUES (182, 180, '运河', '运河区', '中国,河北省,沧州市,运河区', 3, 'yunhe', '0317', '061001', 'Y', '116.85706', '38.31352');
INSERT INTO `tb_region` VALUES (183, 180, '沧县', '沧县', '中国,河北省,沧州市,沧县', 3, 'cangxian', '0317', '061000', 'C', '116.87817', '38.29361');
INSERT INTO `tb_region` VALUES (184, 180, '青县', '青县', '中国,河北省,沧州市,青县', 3, 'qingxian', '0317', '062650', 'Q', '116.80316', '38.58345');
INSERT INTO `tb_region` VALUES (185, 180, '东光', '东光县', '中国,河北省,沧州市,东光县', 3, 'dongguang', '0317', '061600', 'D', '116.53668', '37.8857');
INSERT INTO `tb_region` VALUES (186, 180, '海兴', '海兴县', '中国,河北省,沧州市,海兴县', 3, 'haixing', '0317', '061200', 'H', '117.49758', '38.13958');
INSERT INTO `tb_region` VALUES (187, 180, '盐山', '盐山县', '中国,河北省,沧州市,盐山县', 3, 'yanshan', '0317', '061300', 'Y', '117.23092', '38.05647');
INSERT INTO `tb_region` VALUES (188, 180, '肃宁', '肃宁县', '中国,河北省,沧州市,肃宁县', 3, 'suning', '0317', '062350', 'S', '115.82971', '38.42272');
INSERT INTO `tb_region` VALUES (189, 180, '南皮', '南皮县', '中国,河北省,沧州市,南皮县', 3, 'nanpi', '0317', '061500', 'N', '116.70224', '38.04109');
INSERT INTO `tb_region` VALUES (190, 180, '吴桥', '吴桥县', '中国,河北省,沧州市,吴桥县', 3, 'wuqiao', '0317', '061800', 'W', '116.3847', '37.62546');
INSERT INTO `tb_region` VALUES (191, 180, '献县', '献县', '中国,河北省,沧州市,献县', 3, 'xianxian', '0317', '062250', 'X', '116.12695', '38.19228');
INSERT INTO `tb_region` VALUES (192, 180, '孟村', '孟村回族自治县', '中国,河北省,沧州市,孟村回族自治县', 3, 'mengcun', '0317', '061400', 'M', '117.10412', '38.05338');
INSERT INTO `tb_region` VALUES (193, 180, '泊头', '泊头市', '中国,河北省,沧州市,泊头市', 3, 'botou', '0317', '062150', 'B', '116.57824', '38.08359');
INSERT INTO `tb_region` VALUES (194, 180, '任丘', '任丘市', '中国,河北省,沧州市,任丘市', 3, 'renqiu', '0317', '062550', 'R', '116.1033', '38.71124');
INSERT INTO `tb_region` VALUES (195, 180, '黄骅', '黄骅市', '中国,河北省,沧州市,黄骅市', 3, 'huanghua', '0317', '061100', 'H', '117.33883', '38.3706');
INSERT INTO `tb_region` VALUES (196, 180, '河间', '河间市', '中国,河北省,沧州市,河间市', 3, 'hejian', '0317', '062450', 'H', '116.0993', '38.44549');
INSERT INTO `tb_region` VALUES (197, 37, '廊坊', '廊坊市', '中国,河北省,廊坊市', 2, 'langfang', '0316', '065000', 'L', '116.713873', '39.529244');
INSERT INTO `tb_region` VALUES (198, 197, '安次', '安次区', '中国,河北省,廊坊市,安次区', 3, 'anci', '0316', '065000', 'A', '116.70308', '39.52057');
INSERT INTO `tb_region` VALUES (199, 197, '广阳', '广阳区', '中国,河北省,廊坊市,广阳区', 3, 'guangyang', '0316', '065000', 'G', '116.71069', '39.52278');
INSERT INTO `tb_region` VALUES (200, 197, '固安', '固安县', '中国,河北省,廊坊市,固安县', 3, 'gu\'an', '0316', '065500', 'G', '116.29916', '39.43833');
INSERT INTO `tb_region` VALUES (201, 197, '永清', '永清县', '中国,河北省,廊坊市,永清县', 3, 'yongqing', '0316', '065600', 'Y', '116.50091', '39.32069');
INSERT INTO `tb_region` VALUES (202, 197, '香河', '香河县', '中国,河北省,廊坊市,香河县', 3, 'xianghe', '0316', '065400', 'X', '117.00634', '39.76133');
INSERT INTO `tb_region` VALUES (203, 197, '大城', '大城县', '中国,河北省,廊坊市,大城县', 3, 'daicheng', '0316', '065900', 'D', '116.65353', '38.70534');
INSERT INTO `tb_region` VALUES (204, 197, '文安', '文安县', '中国,河北省,廊坊市,文安县', 3, 'wen\'an', '0316', '065800', 'W', '116.45846', '38.87325');
INSERT INTO `tb_region` VALUES (205, 197, '大厂', '大厂回族自治县', '中国,河北省,廊坊市,大厂回族自治县', 3, 'dachang', '0316', '065300', 'D', '116.98916', '39.88649');
INSERT INTO `tb_region` VALUES (206, 197, '霸州', '霸州市', '中国,河北省,廊坊市,霸州市', 3, 'bazhou', '0316', '065700', 'B', '116.39154', '39.12569');
INSERT INTO `tb_region` VALUES (207, 197, '三河', '三河市', '中国,河北省,廊坊市,三河市', 3, 'sanhe', '0316', '065200', 'S', '117.07229', '39.98358');
INSERT INTO `tb_region` VALUES (208, 37, '衡水', '衡水市', '中国,河北省,衡水市', 2, 'hengshui', '0318', '053000', 'H', '115.665993', '37.735097');
INSERT INTO `tb_region` VALUES (209, 208, '桃城', '桃城区', '中国,河北省,衡水市,桃城区', 3, 'taocheng', '0318', '053000', 'T', '115.67529', '37.73499');
INSERT INTO `tb_region` VALUES (210, 208, '枣强', '枣强县', '中国,河北省,衡水市,枣强县', 3, 'zaoqiang', '0318', '053100', 'Z', '115.72576', '37.51027');
INSERT INTO `tb_region` VALUES (211, 208, '武邑', '武邑县', '中国,河北省,衡水市,武邑县', 3, 'wuyi', '0318', '053400', 'W', '115.88748', '37.80181');
INSERT INTO `tb_region` VALUES (212, 208, '武强', '武强县', '中国,河北省,衡水市,武强县', 3, 'wuqiang', '0318', '053300', 'W', '115.98226', '38.04138');
INSERT INTO `tb_region` VALUES (213, 208, '饶阳', '饶阳县', '中国,河北省,衡水市,饶阳县', 3, 'raoyang', '0318', '053900', 'R', '115.72558', '38.23529');
INSERT INTO `tb_region` VALUES (214, 208, '安平', '安平县', '中国,河北省,衡水市,安平县', 3, 'anping', '0318', '053600', 'A', '115.51876', '38.23388');
INSERT INTO `tb_region` VALUES (215, 208, '故城', '故城县', '中国,河北省,衡水市,故城县', 3, 'gucheng', '0318', '053800', 'G', '115.97076', '37.34773');
INSERT INTO `tb_region` VALUES (216, 208, '景县', '景县', '中国,河北省,衡水市,景县', 3, 'jingxian', '0318', '053500', 'J', '116.26904', '37.6926');
INSERT INTO `tb_region` VALUES (217, 208, '阜城', '阜城县', '中国,河北省,衡水市,阜城县', 3, 'fucheng', '0318', '053700', 'F', '116.14431', '37.86881');
INSERT INTO `tb_region` VALUES (218, 208, '冀州', '冀州市', '中国,河北省,衡水市,冀州市', 3, 'jizhou', '0318', '053200', 'J', '115.57934', '37.55082');
INSERT INTO `tb_region` VALUES (219, 208, '深州', '深州市', '中国,河北省,衡水市,深州市', 3, 'shenzhou', '0318', '053800', 'S', '115.55993', '38.00109');
INSERT INTO `tb_region` VALUES (220, 0, '山西', '山西省', '中国,山西省', 1, 'shanxi', '', '', 'S', '112.549248', '37.857014');
INSERT INTO `tb_region` VALUES (221, 220, '太原', '太原市', '中国,山西省,太原市', 2, 'taiyuan', '0351', '030082', 'T', '112.549248', '37.857014');
INSERT INTO `tb_region` VALUES (222, 221, '小店', '小店区', '中国,山西省,太原市,小店区', 3, 'xiaodian', '0351', '030032', 'X', '112.56878', '37.73565');
INSERT INTO `tb_region` VALUES (223, 221, '迎泽', '迎泽区', '中国,山西省,太原市,迎泽区', 3, 'yingze', '0351', '030002', 'Y', '112.56338', '37.86326');
INSERT INTO `tb_region` VALUES (224, 221, '杏花岭', '杏花岭区', '中国,山西省,太原市,杏花岭区', 3, 'xinghualing', '0351', '030009', 'X', '112.56237', '37.88429');
INSERT INTO `tb_region` VALUES (225, 221, '尖草坪', '尖草坪区', '中国,山西省,太原市,尖草坪区', 3, 'jiancaoping', '0351', '030023', 'J', '112.48709', '37.94193');
INSERT INTO `tb_region` VALUES (226, 221, '万柏林', '万柏林区', '中国,山西省,太原市,万柏林区', 3, 'wanbailin', '0351', '030024', 'W', '112.51553', '37.85923');
INSERT INTO `tb_region` VALUES (227, 221, '晋源', '晋源区', '中国,山西省,太原市,晋源区', 3, 'jinyuan', '0351', '030025', 'J', '112.47985', '37.72479');
INSERT INTO `tb_region` VALUES (228, 221, '清徐', '清徐县', '中国,山西省,太原市,清徐县', 3, 'qingxu', '0351', '030400', 'Q', '112.35888', '37.60758');
INSERT INTO `tb_region` VALUES (229, 221, '阳曲', '阳曲县', '中国,山西省,太原市,阳曲县', 3, 'yangqu', '0351', '030100', 'Y', '112.67861', '38.05989');
INSERT INTO `tb_region` VALUES (230, 221, '娄烦', '娄烦县', '中国,山西省,太原市,娄烦县', 3, 'loufan', '0351', '030300', 'L', '111.79473', '38.06689');
INSERT INTO `tb_region` VALUES (231, 221, '古交', '古交市', '中国,山西省,太原市,古交市', 3, 'gujiao', '0351', '030200', 'G', '112.16918', '37.90983');
INSERT INTO `tb_region` VALUES (232, 220, '大同', '大同市', '中国,山西省,大同市', 2, 'datong', '0352', '037008', 'D', '113.295259', '40.09031');
INSERT INTO `tb_region` VALUES (233, 232, '城区', '城区', '中国,山西省,大同市,城区', 3, 'chengqu', '0352', '037008', 'C', '113.298', '40.07566');
INSERT INTO `tb_region` VALUES (234, 232, '矿区', '矿区', '中国,山西省,大同市,矿区', 3, 'kuangqu', '0352', '037003', 'K', '113.1772', '40.03685');
INSERT INTO `tb_region` VALUES (235, 232, '南郊', '南郊区', '中国,山西省,大同市,南郊区', 3, 'nanjiao', '0352', '037001', 'N', '113.14947', '40.00539');
INSERT INTO `tb_region` VALUES (236, 232, '新荣', '新荣区', '中国,山西省,大同市,新荣区', 3, 'xinrong', '0352', '037002', 'X', '113.13504', '40.25618');
INSERT INTO `tb_region` VALUES (237, 232, '阳高', '阳高县', '中国,山西省,大同市,阳高县', 3, 'yanggao', '0352', '038100', 'Y', '113.75012', '40.36256');
INSERT INTO `tb_region` VALUES (238, 232, '天镇', '天镇县', '中国,山西省,大同市,天镇县', 3, 'tianzhen', '0352', '038200', 'T', '114.0931', '40.42299');
INSERT INTO `tb_region` VALUES (239, 232, '广灵', '广灵县', '中国,山西省,大同市,广灵县', 3, 'guangling', '0352', '037500', 'G', '114.28204', '39.76082');
INSERT INTO `tb_region` VALUES (240, 232, '灵丘', '灵丘县', '中国,山西省,大同市,灵丘县', 3, 'lingqiu', '0352', '034400', 'L', '114.23672', '39.44043');
INSERT INTO `tb_region` VALUES (241, 232, '浑源', '浑源县', '中国,山西省,大同市,浑源县', 3, 'hunyuan', '0352', '037400', 'H', '113.69552', '39.69962');
INSERT INTO `tb_region` VALUES (242, 232, '左云', '左云县', '中国,山西省,大同市,左云县', 3, 'zuoyun', '0352', '037100', 'Z', '112.70266', '40.01336');
INSERT INTO `tb_region` VALUES (243, 232, '大同', '大同县', '中国,山西省,大同市,大同县', 3, 'datong', '0352', '037300', 'D', '113.61212', '40.04012');
INSERT INTO `tb_region` VALUES (244, 220, '阳泉', '阳泉市', '中国,山西省,阳泉市', 2, 'yangquan', '0353', '045000', 'Y', '113.583285', '37.861188');
INSERT INTO `tb_region` VALUES (245, 244, '城区', '城区', '中国,山西省,阳泉市,城区', 3, 'chengqu', '0353', '045000', 'C', '113.60069', '37.8474');
INSERT INTO `tb_region` VALUES (246, 244, '矿区', '矿区', '中国,山西省,阳泉市,矿区', 3, 'kuangqu', '0353', '045000', 'K', '113.55677', '37.86895');
INSERT INTO `tb_region` VALUES (247, 244, '郊区', '郊区', '中国,山西省,阳泉市,郊区', 3, 'jiaoqu', '0353', '045011', 'J', '113.58539', '37.94139');
INSERT INTO `tb_region` VALUES (248, 244, '平定', '平定县', '中国,山西省,阳泉市,平定县', 3, 'pingding', '0353', '045200', 'P', '113.65789', '37.78601');
INSERT INTO `tb_region` VALUES (249, 244, '盂县', '盂县', '中国,山西省,阳泉市,盂县', 3, 'yuxian', '0353', '045100', 'Y', '113.41235', '38.08579');
INSERT INTO `tb_region` VALUES (250, 220, '长治', '长治市', '中国,山西省,长治市', 2, 'changzhi', '0355', '046000', 'C', '113.113556', '36.191112');
INSERT INTO `tb_region` VALUES (251, 250, '城区', '城区', '中国,山西省,长治市,城区', 3, 'chengqu', '0355', '046011', 'C', '113.12308', '36.20351');
INSERT INTO `tb_region` VALUES (252, 250, '郊区', '郊区', '中国,山西省,长治市,郊区', 3, 'jiaoqu', '0355', '046011', 'J', '113.12653', '36.19918');
INSERT INTO `tb_region` VALUES (253, 250, '长治', '长治县', '中国,山西省,长治市,长治县', 3, 'changzhi', '0355', '047100', 'C', '113.04791', '36.04722');
INSERT INTO `tb_region` VALUES (254, 250, '襄垣', '襄垣县', '中国,山西省,长治市,襄垣县', 3, 'xiangyuan', '0355', '046200', 'X', '113.05157', '36.53527');
INSERT INTO `tb_region` VALUES (255, 250, '屯留', '屯留县', '中国,山西省,长治市,屯留县', 3, 'tunliu', '0355', '046100', 'T', '112.89196', '36.31579');
INSERT INTO `tb_region` VALUES (256, 250, '平顺', '平顺县', '中国,山西省,长治市,平顺县', 3, 'pingshun', '0355', '047400', 'P', '113.43603', '36.20005');
INSERT INTO `tb_region` VALUES (257, 250, '黎城', '黎城县', '中国,山西省,长治市,黎城县', 3, 'licheng', '0355', '047600', 'L', '113.38766', '36.50301');
INSERT INTO `tb_region` VALUES (258, 250, '壶关', '壶关县', '中国,山西省,长治市,壶关县', 3, 'huguan', '0355', '047300', 'H', '113.207', '36.11301');
INSERT INTO `tb_region` VALUES (259, 250, '长子', '长子县', '中国,山西省,长治市,长子县', 3, 'zhangzi', '0355', '046600', 'C', '112.87731', '36.12125');
INSERT INTO `tb_region` VALUES (260, 250, '武乡', '武乡县', '中国,山西省,长治市,武乡县', 3, 'wuxiang', '0355', '046300', 'W', '112.86343', '36.83687');
INSERT INTO `tb_region` VALUES (261, 250, '沁县', '沁县', '中国,山西省,长治市,沁县', 3, 'qinxian', '0355', '046400', 'Q', '112.69863', '36.75628');
INSERT INTO `tb_region` VALUES (262, 250, '沁源', '沁源县', '中国,山西省,长治市,沁源县', 3, 'qinyuan', '0355', '046500', 'Q', '112.33758', '36.50008');
INSERT INTO `tb_region` VALUES (263, 250, '潞城', '潞城市', '中国,山西省,长治市,潞城市', 3, 'lucheng', '0355', '047500', 'L', '113.22888', '36.33414');
INSERT INTO `tb_region` VALUES (264, 220, '晋城', '晋城市', '中国,山西省,晋城市', 2, 'jincheng', '0356', '048000', 'J', '112.851274', '35.497553');
INSERT INTO `tb_region` VALUES (265, 264, '城区', '城区', '中国,山西省,晋城市,城区', 3, 'chengqu', '0356', '048000', 'C', '112.85319', '35.50175');
INSERT INTO `tb_region` VALUES (266, 264, '沁水', '沁水县', '中国,山西省,晋城市,沁水县', 3, 'qinshui', '0356', '048200', 'Q', '112.1871', '35.69102');
INSERT INTO `tb_region` VALUES (267, 264, '阳城', '阳城县', '中国,山西省,晋城市,阳城县', 3, 'yangcheng', '0356', '048100', 'Y', '112.41485', '35.48614');
INSERT INTO `tb_region` VALUES (268, 264, '陵川', '陵川县', '中国,山西省,晋城市,陵川县', 3, 'lingchuan', '0356', '048300', 'L', '113.2806', '35.77532');
INSERT INTO `tb_region` VALUES (269, 264, '泽州', '泽州县', '中国,山西省,晋城市,泽州县', 3, 'zezhou', '0356', '048012', 'Z', '112.83947', '35.50789');
INSERT INTO `tb_region` VALUES (270, 264, '高平', '高平市', '中国,山西省,晋城市,高平市', 3, 'gaoping', '0356', '048400', 'G', '112.92288', '35.79705');
INSERT INTO `tb_region` VALUES (271, 220, '朔州', '朔州市', '中国,山西省,朔州市', 2, 'shuozhou', '0349', '038500', 'S', '112.433387', '39.331261');
INSERT INTO `tb_region` VALUES (272, 271, '朔城', '朔城区', '中国,山西省,朔州市,朔城区', 3, 'shuocheng', '0349', '036000', 'S', '112.43189', '39.31982');
INSERT INTO `tb_region` VALUES (273, 271, '平鲁', '平鲁区', '中国,山西省,朔州市,平鲁区', 3, 'pinglu', '0349', '038600', 'P', '112.28833', '39.51155');
INSERT INTO `tb_region` VALUES (274, 271, '山阴', '山阴县', '中国,山西省,朔州市,山阴县', 3, 'shanyin', '0349', '036900', 'S', '112.81662', '39.52697');
INSERT INTO `tb_region` VALUES (275, 271, '应县', '应县', '中国,山西省,朔州市,应县', 3, 'yingxian', '0349', '037600', 'Y', '113.19052', '39.55279');
INSERT INTO `tb_region` VALUES (276, 271, '右玉', '右玉县', '中国,山西省,朔州市,右玉县', 3, 'youyu', '0349', '037200', 'Y', '112.46902', '39.99011');
INSERT INTO `tb_region` VALUES (277, 271, '怀仁', '怀仁县', '中国,山西省,朔州市,怀仁县', 3, 'huairen', '0349', '038300', 'H', '113.10009', '39.82806');
INSERT INTO `tb_region` VALUES (278, 220, '晋中', '晋中市', '中国,山西省,晋中市', 2, 'jinzhong', '0354', '030600', 'J', '112.736465', '37.696495');
INSERT INTO `tb_region` VALUES (279, 278, '榆次', '榆次区', '中国,山西省,晋中市,榆次区', 3, 'yuci', '0354', '030600', 'Y', '112.70788', '37.6978');
INSERT INTO `tb_region` VALUES (280, 278, '榆社', '榆社县', '中国,山西省,晋中市,榆社县', 3, 'yushe', '0354', '031800', 'Y', '112.97558', '37.0721');
INSERT INTO `tb_region` VALUES (281, 278, '左权', '左权县', '中国,山西省,晋中市,左权县', 3, 'zuoquan', '0354', '032600', 'Z', '113.37918', '37.08235');
INSERT INTO `tb_region` VALUES (282, 278, '和顺', '和顺县', '中国,山西省,晋中市,和顺县', 3, 'heshun', '0354', '032700', 'H', '113.56988', '37.32963');
INSERT INTO `tb_region` VALUES (283, 278, '昔阳', '昔阳县', '中国,山西省,晋中市,昔阳县', 3, 'xiyang', '0354', '045300', 'X', '113.70517', '37.61863');
INSERT INTO `tb_region` VALUES (284, 278, '寿阳', '寿阳县', '中国,山西省,晋中市,寿阳县', 3, 'shouyang', '0354', '045400', 'S', '113.17495', '37.88899');
INSERT INTO `tb_region` VALUES (285, 278, '太谷', '太谷县', '中国,山西省,晋中市,太谷县', 3, 'taigu', '0354', '030800', 'T', '112.55246', '37.42161');
INSERT INTO `tb_region` VALUES (286, 278, '祁县', '祁县', '中国,山西省,晋中市,祁县', 3, 'qixian', '0354', '030900', 'Q', '112.33358', '37.3579');
INSERT INTO `tb_region` VALUES (287, 278, '平遥', '平遥县', '中国,山西省,晋中市,平遥县', 3, 'pingyao', '0354', '031100', 'P', '112.17553', '37.1892');
INSERT INTO `tb_region` VALUES (288, 278, '灵石', '灵石县', '中国,山西省,晋中市,灵石县', 3, 'lingshi', '0354', '031300', 'L', '111.7774', '36.84814');
INSERT INTO `tb_region` VALUES (289, 278, '介休', '介休市', '中国,山西省,晋中市,介休市', 3, 'jiexiu', '0354', '032000', 'J', '111.91824', '37.02771');
INSERT INTO `tb_region` VALUES (290, 220, '运城', '运城市', '中国,山西省,运城市', 2, 'yuncheng', '0359', '044000', 'Y', '111.003957', '35.022778');
INSERT INTO `tb_region` VALUES (291, 290, '盐湖', '盐湖区', '中国,山西省,运城市,盐湖区', 3, 'yanhu', '0359', '044000', 'Y', '110.99827', '35.0151');
INSERT INTO `tb_region` VALUES (292, 290, '临猗', '临猗县', '中国,山西省,运城市,临猗县', 3, 'linyi', '0359', '044100', 'L', '110.77432', '35.14455');
INSERT INTO `tb_region` VALUES (293, 290, '万荣', '万荣县', '中国,山西省,运城市,万荣县', 3, 'wanrong', '0359', '044200', 'W', '110.83657', '35.41556');
INSERT INTO `tb_region` VALUES (294, 290, '闻喜', '闻喜县', '中国,山西省,运城市,闻喜县', 3, 'wenxi', '0359', '043800', 'W', '111.22265', '35.35553');
INSERT INTO `tb_region` VALUES (295, 290, '稷山', '稷山县', '中国,山西省,运城市,稷山县', 3, 'jishan', '0359', '043200', 'J', '110.97924', '35.59993');
INSERT INTO `tb_region` VALUES (296, 290, '新绛', '新绛县', '中国,山西省,运城市,新绛县', 3, 'xinjiang', '0359', '043100', 'X', '111.22509', '35.61566');
INSERT INTO `tb_region` VALUES (297, 290, '绛县', '绛县', '中国,山西省,运城市,绛县', 3, 'jiangxian', '0359', '043600', 'J', '111.56668', '35.49096');
INSERT INTO `tb_region` VALUES (298, 290, '垣曲', '垣曲县', '中国,山西省,运城市,垣曲县', 3, 'yuanqu', '0359', '043700', 'Y', '111.67166', '35.29923');
INSERT INTO `tb_region` VALUES (299, 290, '夏县', '夏县', '中国,山西省,运城市,夏县', 3, 'xiaxian', '0359', '044400', 'X', '111.21966', '35.14121');
INSERT INTO `tb_region` VALUES (300, 290, '平陆', '平陆县', '中国,山西省,运城市,平陆县', 3, 'pinglu', '0359', '044300', 'P', '111.21704', '34.83772');
INSERT INTO `tb_region` VALUES (301, 290, '芮城', '芮城县', '中国,山西省,运城市,芮城县', 3, 'ruicheng', '0359', '044600', 'R', '110.69455', '34.69384');
INSERT INTO `tb_region` VALUES (302, 290, '永济', '永济市', '中国,山西省,运城市,永济市', 3, 'yongji', '0359', '044500', 'Y', '110.44537', '34.86556');
INSERT INTO `tb_region` VALUES (303, 290, '河津', '河津市', '中国,山西省,运城市,河津市', 3, 'hejin', '0359', '043300', 'H', '110.7116', '35.59478');
INSERT INTO `tb_region` VALUES (304, 220, '忻州', '忻州市', '中国,山西省,忻州市', 2, 'xinzhou', '0350', '034000', 'X', '112.733538', '38.41769');
INSERT INTO `tb_region` VALUES (305, 304, '忻府', '忻府区', '中国,山西省,忻州市,忻府区', 3, 'xinfu', '0350', '034000', 'X', '112.74603', '38.40414');
INSERT INTO `tb_region` VALUES (306, 304, '定襄', '定襄县', '中国,山西省,忻州市,定襄县', 3, 'dingxiang', '0350', '035400', 'D', '112.95733', '38.47387');
INSERT INTO `tb_region` VALUES (307, 304, '五台', '五台县', '中国,山西省,忻州市,五台县', 3, 'wutai', '0350', '035500', 'W', '113.25256', '38.72774');
INSERT INTO `tb_region` VALUES (308, 304, '代县', '代县', '中国,山西省,忻州市,代县', 3, 'daixian', '0350', '034200', 'D', '112.95913', '39.06717');
INSERT INTO `tb_region` VALUES (309, 304, '繁峙', '繁峙县', '中国,山西省,忻州市,繁峙县', 3, 'fanshi', '0350', '034300', 'F', '113.26303', '39.18886');
INSERT INTO `tb_region` VALUES (310, 304, '宁武', '宁武县', '中国,山西省,忻州市,宁武县', 3, 'ningwu', '0350', '036700', 'N', '112.30423', '39.00211');
INSERT INTO `tb_region` VALUES (311, 304, '静乐', '静乐县', '中国,山西省,忻州市,静乐县', 3, 'jingle', '0350', '035100', 'J', '111.94158', '38.3602');
INSERT INTO `tb_region` VALUES (312, 304, '神池', '神池县', '中国,山西省,忻州市,神池县', 3, 'shenchi', '0350', '036100', 'S', '112.20541', '39.09');
INSERT INTO `tb_region` VALUES (313, 304, '五寨', '五寨县', '中国,山西省,忻州市,五寨县', 3, 'wuzhai', '0350', '036200', 'W', '111.8489', '38.90757');
INSERT INTO `tb_region` VALUES (314, 304, '岢岚', '岢岚县', '中国,山西省,忻州市,岢岚县', 3, 'kelan', '0350', '036300', 'K', '111.57388', '38.70452');
INSERT INTO `tb_region` VALUES (315, 304, '河曲', '河曲县', '中国,山西省,忻州市,河曲县', 3, 'hequ', '0350', '036500', 'H', '111.13821', '39.38439');
INSERT INTO `tb_region` VALUES (316, 304, '保德', '保德县', '中国,山西省,忻州市,保德县', 3, 'baode', '0350', '036600', 'B', '111.08656', '39.02248');
INSERT INTO `tb_region` VALUES (317, 304, '偏关', '偏关县', '中国,山西省,忻州市,偏关县', 3, 'pianguan', '0350', '036400', 'P', '111.50863', '39.43609');
INSERT INTO `tb_region` VALUES (318, 304, '原平', '原平市', '中国,山西省,忻州市,原平市', 3, 'yuanping', '0350', '034100', 'Y', '112.70584', '38.73181');
INSERT INTO `tb_region` VALUES (319, 220, '临汾', '临汾市', '中国,山西省,临汾市', 2, 'linfen', '0357', '041000', 'L', '111.517973', '36.08415');
INSERT INTO `tb_region` VALUES (320, 319, '尧都', '尧都区', '中国,山西省,临汾市,尧都区', 3, 'yaodu', '0357', '041000', 'Y', '111.5787', '36.08298');
INSERT INTO `tb_region` VALUES (321, 319, '曲沃', '曲沃县', '中国,山西省,临汾市,曲沃县', 3, 'quwo', '0357', '043400', 'Q', '111.47525', '35.64119');
INSERT INTO `tb_region` VALUES (322, 319, '翼城', '翼城县', '中国,山西省,临汾市,翼城县', 3, 'yicheng', '0357', '043500', 'Y', '111.7181', '35.73881');
INSERT INTO `tb_region` VALUES (323, 319, '襄汾', '襄汾县', '中国,山西省,临汾市,襄汾县', 3, 'xiangfen', '0357', '041500', 'X', '111.44204', '35.87711');
INSERT INTO `tb_region` VALUES (324, 319, '洪洞', '洪洞县', '中国,山西省,临汾市,洪洞县', 3, 'hongtong', '0357', '041600', 'H', '111.67501', '36.25425');
INSERT INTO `tb_region` VALUES (325, 319, '古县', '古县', '中国,山西省,临汾市,古县', 3, 'guxian', '0357', '042400', 'G', '111.92041', '36.26688');
INSERT INTO `tb_region` VALUES (326, 319, '安泽', '安泽县', '中国,山西省,临汾市,安泽县', 3, 'anze', '0357', '042500', 'A', '112.24981', '36.14803');
INSERT INTO `tb_region` VALUES (327, 319, '浮山', '浮山县', '中国,山西省,临汾市,浮山县', 3, 'fushan', '0357', '042600', 'F', '111.84744', '35.96854');
INSERT INTO `tb_region` VALUES (328, 319, '吉县', '吉县', '中国,山西省,临汾市,吉县', 3, 'jixian', '0357', '042200', 'J', '110.68148', '36.09873');
INSERT INTO `tb_region` VALUES (329, 319, '乡宁', '乡宁县', '中国,山西省,临汾市,乡宁县', 3, 'xiangning', '0357', '042100', 'X', '110.84652', '35.97072');
INSERT INTO `tb_region` VALUES (330, 319, '大宁', '大宁县', '中国,山西省,临汾市,大宁县', 3, 'daning', '0357', '042300', 'D', '110.75216', '36.46624');
INSERT INTO `tb_region` VALUES (331, 319, '隰县', '隰县', '中国,山西省,临汾市,隰县', 3, 'xixian', '0357', '041300', 'X', '110.93881', '36.69258');
INSERT INTO `tb_region` VALUES (332, 319, '永和', '永和县', '中国,山西省,临汾市,永和县', 3, 'yonghe', '0357', '041400', 'Y', '110.63168', '36.7584');
INSERT INTO `tb_region` VALUES (333, 319, '蒲县', '蒲县', '中国,山西省,临汾市,蒲县', 3, 'puxian', '0357', '041200', 'P', '111.09674', '36.41243');
INSERT INTO `tb_region` VALUES (334, 319, '汾西', '汾西县', '中国,山西省,临汾市,汾西县', 3, 'fenxi', '0357', '031500', 'F', '111.56811', '36.65063');
INSERT INTO `tb_region` VALUES (335, 319, '侯马', '侯马市', '中国,山西省,临汾市,侯马市', 3, 'houma', '0357', '043000', 'H', '111.37207', '35.61903');
INSERT INTO `tb_region` VALUES (336, 319, '霍州', '霍州市', '中国,山西省,临汾市,霍州市', 3, 'huozhou', '0357', '031400', 'H', '111.755', '36.5638');
INSERT INTO `tb_region` VALUES (337, 220, '吕梁', '吕梁市', '中国,山西省,吕梁市', 2, 'lvliang', '0358', '033000', 'L', '111.134335', '37.524366');
INSERT INTO `tb_region` VALUES (338, 337, '离石', '离石区', '中国,山西省,吕梁市,离石区', 3, 'lishi', '0358', '033000', 'L', '111.15059', '37.5177');
INSERT INTO `tb_region` VALUES (339, 337, '文水', '文水县', '中国,山西省,吕梁市,文水县', 3, 'wenshui', '0358', '032100', 'W', '112.02829', '37.43841');
INSERT INTO `tb_region` VALUES (340, 337, '交城', '交城县', '中国,山西省,吕梁市,交城县', 3, 'jiaocheng', '0358', '030500', 'J', '112.1585', '37.5512');
INSERT INTO `tb_region` VALUES (341, 337, '兴县', '兴县', '中国,山西省,吕梁市,兴县', 3, 'xingxian', '0358', '033600', 'X', '111.12692', '38.46321');
INSERT INTO `tb_region` VALUES (342, 337, '临县', '临县', '中国,山西省,吕梁市,临县', 3, 'linxian', '0358', '033200', 'L', '110.99282', '37.95271');
INSERT INTO `tb_region` VALUES (343, 337, '柳林', '柳林县', '中国,山西省,吕梁市,柳林县', 3, 'liulin', '0358', '033300', 'L', '110.88922', '37.42932');
INSERT INTO `tb_region` VALUES (344, 337, '石楼', '石楼县', '中国,山西省,吕梁市,石楼县', 3, 'shilou', '0358', '032500', 'S', '110.8352', '36.99731');
INSERT INTO `tb_region` VALUES (345, 337, '岚县', '岚县', '中国,山西省,吕梁市,岚县', 3, 'lanxian', '0358', '033500', 'L', '111.67627', '38.27874');
INSERT INTO `tb_region` VALUES (346, 337, '方山', '方山县', '中国,山西省,吕梁市,方山县', 3, 'fangshan', '0358', '033100', 'F', '111.24011', '37.88979');
INSERT INTO `tb_region` VALUES (347, 337, '中阳', '中阳县', '中国,山西省,吕梁市,中阳县', 3, 'zhongyang', '0358', '033400', 'Z', '111.1795', '37.35715');
INSERT INTO `tb_region` VALUES (348, 337, '交口', '交口县', '中国,山西省,吕梁市,交口县', 3, 'jiaokou', '0358', '032400', 'J', '111.18103', '36.98213');
INSERT INTO `tb_region` VALUES (349, 337, '孝义', '孝义市', '中国,山西省,吕梁市,孝义市', 3, 'xiaoyi', '0358', '032300', 'X', '111.77362', '37.14414');
INSERT INTO `tb_region` VALUES (350, 337, '汾阳', '汾阳市', '中国,山西省,吕梁市,汾阳市', 3, 'fenyang', '0358', '032200', 'F', '111.7882', '37.26605');
INSERT INTO `tb_region` VALUES (351, 0, '内蒙古', '内蒙古自治区', '中国,内蒙古自治区', 1, 'innermongolia', '', '', 'N', '111.670801', '40.818311');
INSERT INTO `tb_region` VALUES (352, 351, '呼和浩特', '呼和浩特市', '中国,内蒙古自治区,呼和浩特市', 2, 'hohhot', '0471', '010000', 'H', '111.670801', '40.818311');
INSERT INTO `tb_region` VALUES (353, 352, '新城', '新城区', '中国,内蒙古自治区,呼和浩特市,新城区', 3, 'xincheng', '0471', '010050', 'X', '111.66554', '40.85828');
INSERT INTO `tb_region` VALUES (354, 352, '回民', '回民区', '中国,内蒙古自治区,呼和浩特市,回民区', 3, 'huimin', '0471', '010030', 'H', '111.62402', '40.80827');
INSERT INTO `tb_region` VALUES (355, 352, '玉泉', '玉泉区', '中国,内蒙古自治区,呼和浩特市,玉泉区', 3, 'yuquan', '0471', '010020', 'Y', '111.67456', '40.75227');
INSERT INTO `tb_region` VALUES (356, 352, '赛罕', '赛罕区', '中国,内蒙古自治区,呼和浩特市,赛罕区', 3, 'saihan', '0471', '010020', 'S', '111.70224', '40.79207');
INSERT INTO `tb_region` VALUES (357, 352, '土默特左旗', '土默特左旗', '中国,内蒙古自治区,呼和浩特市,土默特左旗', 3, 'tumotezuoqi', '0471', '010100', 'T', '111.14898', '40.72229');
INSERT INTO `tb_region` VALUES (358, 352, '托克托', '托克托县', '中国,内蒙古自治区,呼和浩特市,托克托县', 3, 'tuoketuo', '0471', '010200', 'T', '111.19101', '40.27492');
INSERT INTO `tb_region` VALUES (359, 352, '和林格尔', '和林格尔县', '中国,内蒙古自治区,呼和浩特市,和林格尔县', 3, 'helingeer', '0471', '011500', 'H', '111.82205', '40.37892');
INSERT INTO `tb_region` VALUES (360, 352, '清水河', '清水河县', '中国,内蒙古自治区,呼和浩特市,清水河县', 3, 'qingshuihe', '0471', '011600', 'Q', '111.68316', '39.9097');
INSERT INTO `tb_region` VALUES (361, 352, '武川', '武川县', '中国,内蒙古自治区,呼和浩特市,武川县', 3, 'wuchuan', '0471', '011700', 'W', '111.45785', '41.09289');
INSERT INTO `tb_region` VALUES (362, 351, '包头', '包头市', '中国,内蒙古自治区,包头市', 2, 'baotou', '0472', '014025', 'B', '109.840405', '40.658168');
INSERT INTO `tb_region` VALUES (363, 362, '东河', '东河区', '中国,内蒙古自治区,包头市,东河区', 3, 'donghe', '0472', '014040', 'D', '110.0462', '40.58237');
INSERT INTO `tb_region` VALUES (364, 362, '昆都仑', '昆都仑区', '中国,内蒙古自治区,包头市,昆都仑区', 3, 'kundulun', '0472', '014010', 'K', '109.83862', '40.64175');
INSERT INTO `tb_region` VALUES (365, 362, '青山', '青山区', '中国,内蒙古自治区,包头市,青山区', 3, 'qingshan', '0472', '014030', 'Q', '109.90131', '40.64329');
INSERT INTO `tb_region` VALUES (366, 362, '石拐', '石拐区', '中国,内蒙古自治区,包头市,石拐区', 3, 'shiguai', '0472', '014070', 'S', '110.27322', '40.67297');
INSERT INTO `tb_region` VALUES (367, 362, '白云鄂博矿区', '白云鄂博矿区', '中国,内蒙古自治区,包头市,白云鄂博矿区', 3, 'baiyunebokuangqu', '0472', '014080', 'B', '109.97367', '41.76968');
INSERT INTO `tb_region` VALUES (368, 362, '九原', '九原区', '中国,内蒙古自治区,包头市,九原区', 3, 'jiuyuan', '0472', '014060', 'J', '109.96496', '40.60554');
INSERT INTO `tb_region` VALUES (369, 362, '土默特右旗', '土默特右旗', '中国,内蒙古自治区,包头市,土默特右旗', 3, 'tumoteyouqi', '0472', '014100', 'T', '110.52417', '40.5688');
INSERT INTO `tb_region` VALUES (370, 362, '固阳', '固阳县', '中国,内蒙古自治区,包头市,固阳县', 3, 'guyang', '0472', '014200', 'G', '110.06372', '41.01851');
INSERT INTO `tb_region` VALUES (371, 362, '达茂旗', '达尔罕茂明安联合旗', '中国,内蒙古自治区,包头市,达尔罕茂明安联合旗', 3, 'damaoqi', '0472', '014500', 'D', '110.43258', '41.69875');
INSERT INTO `tb_region` VALUES (372, 351, '乌海', '乌海市', '中国,内蒙古自治区,乌海市', 2, 'wuhai', '0473', '016000', 'W', '106.825563', '39.673734');
INSERT INTO `tb_region` VALUES (373, 372, '海勃湾', '海勃湾区', '中国,内蒙古自治区,乌海市,海勃湾区', 3, 'haibowan', '0473', '016000', 'H', '106.8222', '39.66955');
INSERT INTO `tb_region` VALUES (374, 372, '海南', '海南区', '中国,内蒙古自治区,乌海市,海南区', 3, 'hainan', '0473', '016030', 'H', '106.88656', '39.44128');
INSERT INTO `tb_region` VALUES (375, 372, '乌达', '乌达区', '中国,内蒙古自治区,乌海市,乌达区', 3, 'wuda', '0473', '016040', 'W', '106.72723', '39.505');
INSERT INTO `tb_region` VALUES (376, 351, '赤峰', '赤峰市', '中国,内蒙古自治区,赤峰市', 2, 'chifeng', '0476', '024000', 'C', '118.956806', '42.275317');
INSERT INTO `tb_region` VALUES (377, 376, '红山', '红山区', '中国,内蒙古自治区,赤峰市,红山区', 3, 'hongshan', '0476', '024020', 'H', '118.95755', '42.24312');
INSERT INTO `tb_region` VALUES (378, 376, '元宝山', '元宝山区', '中国,内蒙古自治区,赤峰市,元宝山区', 3, 'yuanbaoshan', '0476', '024076', 'Y', '119.28921', '42.04005');
INSERT INTO `tb_region` VALUES (379, 376, '松山', '松山区', '中国,内蒙古自治区,赤峰市,松山区', 3, 'songshan', '0476', '024005', 'S', '118.9328', '42.28613');
INSERT INTO `tb_region` VALUES (380, 376, '阿鲁科尔沁旗', '阿鲁科尔沁旗', '中国,内蒙古自治区,赤峰市,阿鲁科尔沁旗', 3, 'alukeerqinqi', '0476', '025550', 'A', '120.06527', '43.87988');
INSERT INTO `tb_region` VALUES (381, 376, '巴林左旗', '巴林左旗', '中国,内蒙古自治区,赤峰市,巴林左旗', 3, 'balinzuoqi', '0476', '025450', 'B', '119.38012', '43.97031');
INSERT INTO `tb_region` VALUES (382, 376, '巴林右旗', '巴林右旗', '中国,内蒙古自治区,赤峰市,巴林右旗', 3, 'balinyouqi', '0476', '025150', 'B', '118.66461', '43.53387');
INSERT INTO `tb_region` VALUES (383, 376, '林西', '林西县', '中国,内蒙古自治区,赤峰市,林西县', 3, 'linxi', '0476', '025250', 'L', '118.04733', '43.61165');
INSERT INTO `tb_region` VALUES (384, 376, '克什克腾旗', '克什克腾旗', '中国,内蒙古自治区,赤峰市,克什克腾旗', 3, 'keshiketengqi', '0476', '025350', 'K', '117.54562', '43.26501');
INSERT INTO `tb_region` VALUES (385, 376, '翁牛特旗', '翁牛特旗', '中国,内蒙古自治区,赤峰市,翁牛特旗', 3, 'wengniuteqi', '0476', '024500', 'W', '119.03042', '42.93147');
INSERT INTO `tb_region` VALUES (386, 376, '喀喇沁旗', '喀喇沁旗', '中国,内蒙古自治区,赤峰市,喀喇沁旗', 3, 'kalaqinqi', '0476', '024400', 'K', '118.70144', '41.92917');
INSERT INTO `tb_region` VALUES (387, 376, '宁城', '宁城县', '中国,内蒙古自治区,赤峰市,宁城县', 3, 'ningcheng', '0476', '024200', 'N', '119.34375', '41.59661');
INSERT INTO `tb_region` VALUES (388, 376, '敖汉旗', '敖汉旗', '中国,内蒙古自治区,赤峰市,敖汉旗', 3, 'aohanqi', '0476', '024300', 'A', '119.92163', '42.29071');
INSERT INTO `tb_region` VALUES (389, 351, '通辽', '通辽市', '中国,内蒙古自治区,通辽市', 2, 'tongliao', '0475', '028000', 'T', '122.263119', '43.617429');
INSERT INTO `tb_region` VALUES (390, 389, '科尔沁', '科尔沁区', '中国,内蒙古自治区,通辽市,科尔沁区', 3, 'keerqin', '0475', '028000', 'K', '122.25573', '43.62257');
INSERT INTO `tb_region` VALUES (391, 389, '科尔沁左翼中旗', '科尔沁左翼中旗', '中国,内蒙古自治区,通辽市,科尔沁左翼中旗', 3, 'keerqinzuoyizhongqi', '0475', '029300', 'K', '123.31912', '44.13014');
INSERT INTO `tb_region` VALUES (392, 389, '科尔沁左翼后旗', '科尔沁左翼后旗', '中国,内蒙古自治区,通辽市,科尔沁左翼后旗', 3, 'keerqinzuoyihouqi', '0475', '028100', 'K', '122.35745', '42.94897');
INSERT INTO `tb_region` VALUES (393, 389, '开鲁', '开鲁县', '中国,内蒙古自治区,通辽市,开鲁县', 3, 'kailu', '0475', '028400', 'K', '121.31884', '43.60003');
INSERT INTO `tb_region` VALUES (394, 389, '库伦旗', '库伦旗', '中国,内蒙古自治区,通辽市,库伦旗', 3, 'kulunqi', '0475', '028200', 'K', '121.776', '42.72998');
INSERT INTO `tb_region` VALUES (395, 389, '奈曼旗', '奈曼旗', '中国,内蒙古自治区,通辽市,奈曼旗', 3, 'naimanqi', '0475', '028300', 'N', '120.66348', '42.84527');
INSERT INTO `tb_region` VALUES (396, 389, '扎鲁特旗', '扎鲁特旗', '中国,内蒙古自治区,通辽市,扎鲁特旗', 3, 'zhaluteqi', '0475', '029100', 'Z', '120.91507', '44.55592');
INSERT INTO `tb_region` VALUES (397, 389, '霍林郭勒', '霍林郭勒市', '中国,内蒙古自治区,通辽市,霍林郭勒市', 3, 'huolinguole', '0475', '029200', 'H', '119.65429', '45.53454');
INSERT INTO `tb_region` VALUES (398, 351, '鄂尔多斯', '鄂尔多斯市', '中国,内蒙古自治区,鄂尔多斯市', 2, 'ordos', '0477', '017004', 'E', '109.99029', '39.817179');
INSERT INTO `tb_region` VALUES (399, 398, '东胜', '东胜区', '中国,内蒙古自治区,鄂尔多斯市,东胜区', 3, 'dongsheng', '0477', '017000', 'D', '109.96289', '39.82236');
INSERT INTO `tb_region` VALUES (400, 398, '达拉特旗', '达拉特旗', '中国,内蒙古自治区,鄂尔多斯市,达拉特旗', 3, 'dalateqi', '0477', '014300', 'D', '110.03317', '40.4001');
INSERT INTO `tb_region` VALUES (401, 398, '准格尔旗', '准格尔旗', '中国,内蒙古自治区,鄂尔多斯市,准格尔旗', 3, 'zhungeerqi', '0477', '017100', 'Z', '111.23645', '39.86783');
INSERT INTO `tb_region` VALUES (402, 398, '鄂托克前旗', '鄂托克前旗', '中国,内蒙古自治区,鄂尔多斯市,鄂托克前旗', 3, 'etuokeqianqi', '0477', '016200', 'E', '107.48403', '38.18396');
INSERT INTO `tb_region` VALUES (403, 398, '鄂托克旗', '鄂托克旗', '中国,内蒙古自治区,鄂尔多斯市,鄂托克旗', 3, 'etuokeqi', '0477', '016100', 'E', '107.98226', '39.09456');
INSERT INTO `tb_region` VALUES (404, 398, '杭锦旗', '杭锦旗', '中国,内蒙古自治区,鄂尔多斯市,杭锦旗', 3, 'hangjinqi', '0477', '017400', 'H', '108.72934', '39.84023');
INSERT INTO `tb_region` VALUES (405, 398, '乌审旗', '乌审旗', '中国,内蒙古自治区,鄂尔多斯市,乌审旗', 3, 'wushenqi', '0477', '017300', 'W', '108.8461', '38.59092');
INSERT INTO `tb_region` VALUES (406, 398, '伊金霍洛旗', '伊金霍洛旗', '中国,内蒙古自治区,鄂尔多斯市,伊金霍洛旗', 3, 'yijinhuoluoqi', '0477', '017200', 'Y', '109.74908', '39.57393');
INSERT INTO `tb_region` VALUES (407, 351, '呼伦贝尔', '呼伦贝尔市', '中国,内蒙古自治区,呼伦贝尔市', 2, 'hulunber', '0470', '021008', 'H', '119.758168', '49.215333');
INSERT INTO `tb_region` VALUES (408, 407, '海拉尔', '海拉尔区', '中国,内蒙古自治区,呼伦贝尔市,海拉尔区', 3, 'hailaer', '0470', '021000', 'H', '119.7364', '49.2122');
INSERT INTO `tb_region` VALUES (409, 407, '扎赉诺尔', '扎赉诺尔区', '中国,内蒙古自治区,呼伦贝尔市,扎赉诺尔区', 3, 'zhalainuoer', '0470', '021410', 'Z', '117.792702', '49.486943');
INSERT INTO `tb_region` VALUES (410, 407, '阿荣旗', '阿荣旗', '中国,内蒙古自治区,呼伦贝尔市,阿荣旗', 3, 'arongqi', '0470', '162750', 'A', '123.45941', '48.12581');
INSERT INTO `tb_region` VALUES (411, 407, '莫旗', '莫力达瓦达斡尔族自治旗', '中国,内蒙古自治区,呼伦贝尔市,莫力达瓦达斡尔族自治旗', 3, 'moqi', '0470', '162850', 'M', '124.51498', '48.48055');
INSERT INTO `tb_region` VALUES (412, 407, '鄂伦春', '鄂伦春自治旗', '中国,内蒙古自治区,呼伦贝尔市,鄂伦春自治旗', 3, 'elunchun', '0470', '165450', 'E', '123.72604', '50.59777');
INSERT INTO `tb_region` VALUES (413, 407, '鄂温', '鄂温克族自治旗', '中国,内蒙古自治区,呼伦贝尔市,鄂温克族自治旗', 3, 'ewen', '0470', '021100', 'E', '119.7565', '49.14284');
INSERT INTO `tb_region` VALUES (414, 407, '陈巴尔虎旗', '陈巴尔虎旗', '中国,内蒙古自治区,呼伦贝尔市,陈巴尔虎旗', 3, 'chenbaerhuqi', '0470', '021500', 'C', '119.42434', '49.32684');
INSERT INTO `tb_region` VALUES (415, 407, '新巴尔虎左旗', '新巴尔虎左旗', '中国,内蒙古自治区,呼伦贝尔市,新巴尔虎左旗', 3, 'xinbaerhuzuoqi', '0470', '021200', 'X', '118.26989', '48.21842');
INSERT INTO `tb_region` VALUES (416, 407, '新巴尔虎右旗', '新巴尔虎右旗', '中国,内蒙古自治区,呼伦贝尔市,新巴尔虎右旗', 3, 'xinbaerhuyouqi', '0470', '021300', 'X', '116.82366', '48.66473');
INSERT INTO `tb_region` VALUES (417, 407, '满洲里', '满洲里市', '中国,内蒙古自治区,呼伦贝尔市,满洲里市', 3, 'manzhouli', '0470', '021400', 'M', '117.47946', '49.58272');
INSERT INTO `tb_region` VALUES (418, 407, '牙克石', '牙克石市', '中国,内蒙古自治区,呼伦贝尔市,牙克石市', 3, 'yakeshi', '0470', '022150', 'Y', '120.7117', '49.2856');
INSERT INTO `tb_region` VALUES (419, 407, '扎兰屯', '扎兰屯市', '中国,内蒙古自治区,呼伦贝尔市,扎兰屯市', 3, 'zhalantun', '0470', '162650', 'Z', '122.73757', '48.01363');
INSERT INTO `tb_region` VALUES (420, 407, '额尔古纳', '额尔古纳市', '中国,内蒙古自治区,呼伦贝尔市,额尔古纳市', 3, 'eerguna', '0470', '022250', 'E', '120.19094', '50.24249');
INSERT INTO `tb_region` VALUES (421, 407, '根河', '根河市', '中国,内蒙古自治区,呼伦贝尔市,根河市', 3, 'genhe', '0470', '022350', 'G', '121.52197', '50.77996');
INSERT INTO `tb_region` VALUES (422, 351, '巴彦淖尔', '巴彦淖尔市', '中国,内蒙古自治区,巴彦淖尔市', 2, 'bayannur', '0478', '015001', 'B', '107.416959', '40.757402');
INSERT INTO `tb_region` VALUES (423, 422, '临河', '临河区', '中国,内蒙古自治区,巴彦淖尔市,临河区', 3, 'linhe', '0478', '015001', 'L', '107.42668', '40.75827');
INSERT INTO `tb_region` VALUES (424, 422, '五原', '五原县', '中国,内蒙古自治区,巴彦淖尔市,五原县', 3, 'wuyuan', '0478', '015100', 'W', '108.26916', '41.09631');
INSERT INTO `tb_region` VALUES (425, 422, '磴口', '磴口县', '中国,内蒙古自治区,巴彦淖尔市,磴口县', 3, 'dengkou', '0478', '015200', 'D', '107.00936', '40.33062');
INSERT INTO `tb_region` VALUES (426, 422, '乌拉特前旗', '乌拉特前旗', '中国,内蒙古自治区,巴彦淖尔市,乌拉特前旗', 3, 'wulateqianqi', '0478', '014400', 'W', '108.65219', '40.73649');
INSERT INTO `tb_region` VALUES (427, 422, '乌拉特中旗', '乌拉特中旗', '中国,内蒙古自治区,巴彦淖尔市,乌拉特中旗', 3, 'wulatezhongqi', '0478', '015300', 'W', '108.52587', '41.56789');
INSERT INTO `tb_region` VALUES (428, 422, '乌拉特后旗', '乌拉特后旗', '中国,内蒙古自治区,巴彦淖尔市,乌拉特后旗', 3, 'wulatehouqi', '0478', '015500', 'W', '106.98971', '41.43151');
INSERT INTO `tb_region` VALUES (429, 422, '杭锦后旗', '杭锦后旗', '中国,内蒙古自治区,巴彦淖尔市,杭锦后旗', 3, 'hangjinhouqi', '0478', '015400', 'H', '107.15133', '40.88627');
INSERT INTO `tb_region` VALUES (430, 351, '乌兰察布', '乌兰察布市', '中国,内蒙古自治区,乌兰察布市', 2, 'ulanqab', '0474', '012000', 'W', '113.114543', '41.034126');
INSERT INTO `tb_region` VALUES (431, 430, '集宁', '集宁区', '中国,内蒙古自治区,乌兰察布市,集宁区', 3, 'jining', '0474', '012000', 'J', '113.11452', '41.0353');
INSERT INTO `tb_region` VALUES (432, 430, '卓资', '卓资县', '中国,内蒙古自治区,乌兰察布市,卓资县', 3, 'zhuozi', '0474', '012300', 'Z', '112.57757', '40.89414');
INSERT INTO `tb_region` VALUES (433, 430, '化德', '化德县', '中国,内蒙古自治区,乌兰察布市,化德县', 3, 'huade', '0474', '013350', 'H', '114.01071', '41.90433');
INSERT INTO `tb_region` VALUES (434, 430, '商都', '商都县', '中国,内蒙古自治区,乌兰察布市,商都县', 3, 'shangdu', '0474', '013450', 'S', '113.57772', '41.56213');
INSERT INTO `tb_region` VALUES (435, 430, '兴和', '兴和县', '中国,内蒙古自治区,乌兰察布市,兴和县', 3, 'xinghe', '0474', '013650', 'X', '113.83395', '40.87186');
INSERT INTO `tb_region` VALUES (436, 430, '凉城', '凉城县', '中国,内蒙古自治区,乌兰察布市,凉城县', 3, 'liangcheng', '0474', '013750', 'L', '112.49569', '40.53346');
INSERT INTO `tb_region` VALUES (437, 430, '察右前旗', '察哈尔右翼前旗', '中国,内蒙古自治区,乌兰察布市,察哈尔右翼前旗', 3, 'chayouqianqi', '0474', '012200', 'C', '113.22131', '40.7788');
INSERT INTO `tb_region` VALUES (438, 430, '察右中旗', '察哈尔右翼中旗', '中国,内蒙古自治区,乌兰察布市,察哈尔右翼中旗', 3, 'chayouzhongqi', '0474', '013550', 'C', '112.63537', '41.27742');
INSERT INTO `tb_region` VALUES (439, 430, '察右后旗', '察哈尔右翼后旗', '中国,内蒙古自治区,乌兰察布市,察哈尔右翼后旗', 3, 'chayouhouqi', '0474', '012400', 'C', '113.19216', '41.43554');
INSERT INTO `tb_region` VALUES (440, 430, '四子王旗', '四子王旗', '中国,内蒙古自治区,乌兰察布市,四子王旗', 3, 'siziwangqi', '0474', '011800', 'S', '111.70654', '41.53312');
INSERT INTO `tb_region` VALUES (441, 430, '丰镇', '丰镇市', '中国,内蒙古自治区,乌兰察布市,丰镇市', 3, 'fengzhen', '0474', '012100', 'F', '113.10983', '40.4369');
INSERT INTO `tb_region` VALUES (442, 351, '兴安盟', '兴安盟', '中国,内蒙古自治区,兴安盟', 2, 'hinggan', '0482', '137401', 'X', '122.070317', '46.076268');
INSERT INTO `tb_region` VALUES (443, 442, '乌兰浩特', '乌兰浩特市', '中国,内蒙古自治区,兴安盟,乌兰浩特市', 3, 'wulanhaote', '0482', '137401', 'W', '122.06378', '46.06235');
INSERT INTO `tb_region` VALUES (444, 442, '阿尔山', '阿尔山市', '中国,内蒙古自治区,兴安盟,阿尔山市', 3, 'aershan', '0482', '137800', 'A', '119.94317', '47.17716');
INSERT INTO `tb_region` VALUES (445, 442, '科右前旗', '科尔沁右翼前旗', '中国,内蒙古自治区,兴安盟,科尔沁右翼前旗', 3, 'keyouqianqi', '0482', '137423', 'K', '121.95269', '46.0795');
INSERT INTO `tb_region` VALUES (446, 442, '科右中旗', '科尔沁右翼中旗', '中国,内蒙古自治区,兴安盟,科尔沁右翼中旗', 3, 'keyouzhongqi', '0482', '029400', 'K', '121.46807', '45.05605');
INSERT INTO `tb_region` VALUES (447, 442, '扎赉特旗', '扎赉特旗', '中国,内蒙古自治区,兴安盟,扎赉特旗', 3, 'zhalaiteqi', '0482', '137600', 'Z', '122.91229', '46.7267');
INSERT INTO `tb_region` VALUES (448, 442, '突泉', '突泉县', '中国,内蒙古自治区,兴安盟,突泉县', 3, 'tuquan', '0482', '137500', 'T', '121.59396', '45.38187');
INSERT INTO `tb_region` VALUES (449, 351, '锡林郭勒盟', '锡林郭勒盟', '中国,内蒙古自治区,锡林郭勒盟', 2, 'xilingol', '0479', '026000', 'X', '116.090996', '43.944018');
INSERT INTO `tb_region` VALUES (450, 449, '二连浩特', '二连浩特市', '中国,内蒙古自治区,锡林郭勒盟,二连浩特市', 3, 'erlianhaote', '0479', '011100', 'E', '111.98297', '43.65303');
INSERT INTO `tb_region` VALUES (451, 449, '锡林浩特', '锡林浩特市', '中国,内蒙古自治区,锡林郭勒盟,锡林浩特市', 3, 'xilinhaote', '0479', '026021', 'X', '116.08603', '43.93341');
INSERT INTO `tb_region` VALUES (452, 449, '阿巴嘎旗', '阿巴嘎旗', '中国,内蒙古自治区,锡林郭勒盟,阿巴嘎旗', 3, 'abagaqi', '0479', '011400', 'A', '114.96826', '44.02174');
INSERT INTO `tb_region` VALUES (453, 449, '苏尼特左旗', '苏尼特左旗', '中国,内蒙古自治区,锡林郭勒盟,苏尼特左旗', 3, 'sunitezuoqi', '0479', '011300', 'S', '113.6506', '43.85687');
INSERT INTO `tb_region` VALUES (454, 449, '苏尼特右旗', '苏尼特右旗', '中国,内蒙古自治区,锡林郭勒盟,苏尼特右旗', 3, 'suniteyouqi', '0479', '011200', 'S', '112.65741', '42.7469');
INSERT INTO `tb_region` VALUES (455, 449, '东乌旗', '东乌珠穆沁旗', '中国,内蒙古自治区,锡林郭勒盟,东乌珠穆沁旗', 3, 'dongwuqi', '0479', '026300', 'D', '116.97293', '45.51108');
INSERT INTO `tb_region` VALUES (456, 449, '西乌旗', '西乌珠穆沁旗', '中国,内蒙古自治区,锡林郭勒盟,西乌珠穆沁旗', 3, 'xiwuqi', '0479', '026200', 'X', '117.60983', '44.59623');
INSERT INTO `tb_region` VALUES (457, 449, '太仆寺旗', '太仆寺旗', '中国,内蒙古自治区,锡林郭勒盟,太仆寺旗', 3, 'taipusiqi', '0479', '027000', 'T', '115.28302', '41.87727');
INSERT INTO `tb_region` VALUES (458, 449, '镶黄旗', '镶黄旗', '中国,内蒙古自治区,锡林郭勒盟,镶黄旗', 3, 'xianghuangqi', '0479', '013250', 'X', '113.84472', '42.23927');
INSERT INTO `tb_region` VALUES (459, 449, '正镶白旗', '正镶白旗', '中国,内蒙古自治区,锡林郭勒盟,正镶白旗', 3, 'zhengxiangbaiqi', '0479', '013800', 'Z', '115.00067', '42.30712');
INSERT INTO `tb_region` VALUES (460, 449, '正蓝旗', '正蓝旗', '中国,内蒙古自治区,锡林郭勒盟,正蓝旗', 3, 'zhenglanqi', '0479', '027200', 'Z', '116.00363', '42.25229');
INSERT INTO `tb_region` VALUES (461, 449, '多伦', '多伦县', '中国,内蒙古自治区,锡林郭勒盟,多伦县', 3, 'duolun', '0479', '027300', 'D', '116.48565', '42.203');
INSERT INTO `tb_region` VALUES (462, 351, '阿拉善盟', '阿拉善盟', '中国,内蒙古自治区,阿拉善盟', 2, 'alxa', '0483', '750306', 'A', '105.706422', '38.844814');
INSERT INTO `tb_region` VALUES (463, 462, '阿拉善左旗', '阿拉善左旗', '中国,内蒙古自治区,阿拉善盟,阿拉善左旗', 3, 'alashanzuoqi', '0483', '750306', 'A', '105.67532', '38.8293');
INSERT INTO `tb_region` VALUES (464, 462, '阿拉善右旗', '阿拉善右旗', '中国,内蒙古自治区,阿拉善盟,阿拉善右旗', 3, 'alashanyouqi', '0483', '737300', 'A', '101.66705', '39.21533');
INSERT INTO `tb_region` VALUES (465, 462, '额济纳旗', '额济纳旗', '中国,内蒙古自治区,阿拉善盟,额济纳旗', 3, 'ejinaqi', '0483', '735400', 'E', '101.06887', '41.96755');
INSERT INTO `tb_region` VALUES (466, 0, '辽宁', '辽宁省', '中国,辽宁省', 1, 'liaoning', '', '', 'L', '123.429096', '41.796767');
INSERT INTO `tb_region` VALUES (467, 466, '沈阳', '沈阳市', '中国,辽宁省,沈阳市', 2, 'shenyang', '024', '110013', 'S', '123.429096', '41.796767');
INSERT INTO `tb_region` VALUES (468, 467, '和平', '和平区', '中国,辽宁省,沈阳市,和平区', 3, 'heping', '024', '110001', 'H', '123.4204', '41.78997');
INSERT INTO `tb_region` VALUES (469, 467, '沈河', '沈河区', '中国,辽宁省,沈阳市,沈河区', 3, 'shenhe', '024', '110011', 'S', '123.45871', '41.79625');
INSERT INTO `tb_region` VALUES (470, 467, '大东', '大东区', '中国,辽宁省,沈阳市,大东区', 3, 'dadong', '024', '110041', 'D', '123.46997', '41.80539');
INSERT INTO `tb_region` VALUES (471, 467, '皇姑', '皇姑区', '中国,辽宁省,沈阳市,皇姑区', 3, 'huanggu', '024', '110031', 'H', '123.42527', '41.82035');
INSERT INTO `tb_region` VALUES (472, 467, '铁西', '铁西区', '中国,辽宁省,沈阳市,铁西区', 3, 'tiexi', '024', '110021', 'T', '123.37675', '41.80269');
INSERT INTO `tb_region` VALUES (473, 467, '苏家屯', '苏家屯区', '中国,辽宁省,沈阳市,苏家屯区', 3, 'sujiatun', '024', '110101', 'S', '123.34405', '41.66475');
INSERT INTO `tb_region` VALUES (474, 467, '浑南', '浑南区', '中国,辽宁省,沈阳市,浑南区', 3, 'hunnan', '024', '110015', 'H', '123.457707', '41.719450');
INSERT INTO `tb_region` VALUES (475, 467, '沈北新区', '沈北新区', '中国,辽宁省,沈阳市,沈北新区', 3, 'shenbeixinqu', '024', '110121', 'S', '123.52658', '42.05297');
INSERT INTO `tb_region` VALUES (476, 467, '于洪', '于洪区', '中国,辽宁省,沈阳市,于洪区', 3, 'yuhong', '024', '110141', 'Y', '123.30807', '41.794');
INSERT INTO `tb_region` VALUES (477, 467, '辽中', '辽中县', '中国,辽宁省,沈阳市,辽中县', 3, 'liaozhong', '024', '110200', 'L', '122.72659', '41.51302');
INSERT INTO `tb_region` VALUES (478, 467, '康平', '康平县', '中国,辽宁省,沈阳市,康平县', 3, 'kangping', '024', '110500', 'K', '123.35446', '42.75081');
INSERT INTO `tb_region` VALUES (479, 467, '法库', '法库县', '中国,辽宁省,沈阳市,法库县', 3, 'faku', '024', '110400', 'F', '123.41214', '42.50608');
INSERT INTO `tb_region` VALUES (480, 467, '新民', '新民市', '中国,辽宁省,沈阳市,新民市', 3, 'xinmin', '024', '110300', 'X', '122.82867', '41.99847');
INSERT INTO `tb_region` VALUES (481, 466, '大连', '大连市', '中国,辽宁省,大连市', 2, 'dalian', '0411', '116011', 'D', '121.618622', '38.91459');
INSERT INTO `tb_region` VALUES (482, 481, '中山', '中山区', '中国,辽宁省,大连市,中山区', 3, 'zhongshan', '0411', '116001', 'Z', '121.64465', '38.91859');
INSERT INTO `tb_region` VALUES (483, 481, '西岗', '西岗区', '中国,辽宁省,大连市,西岗区', 3, 'xigang', '0411', '116011', 'X', '121.61238', '38.91469');
INSERT INTO `tb_region` VALUES (484, 481, '沙河口', '沙河口区', '中国,辽宁省,大连市,沙河口区', 3, 'shahekou', '0411', '116021', 'S', '121.58017', '38.90536');
INSERT INTO `tb_region` VALUES (485, 481, '甘井子', '甘井子区', '中国,辽宁省,大连市,甘井子区', 3, 'ganjingzi', '0411', '116033', 'G', '121.56567', '38.95017');
INSERT INTO `tb_region` VALUES (486, 481, '旅顺口', '旅顺口区', '中国,辽宁省,大连市,旅顺口区', 3, 'lvshunkou', '0411', '116041', 'L', '121.26202', '38.85125');
INSERT INTO `tb_region` VALUES (487, 481, '金州', '金州区', '中国,辽宁省,大连市,金州区', 3, 'jinzhou', '0411', '116100', 'J', '121.71893', '39.1004');
INSERT INTO `tb_region` VALUES (488, 481, '长海', '长海县', '中国,辽宁省,大连市,长海县', 3, 'changhai', '0411', '116500', 'C', '122.58859', '39.27274');
INSERT INTO `tb_region` VALUES (489, 481, '瓦房店', '瓦房店市', '中国,辽宁省,大连市,瓦房店市', 3, 'wafangdian', '0411', '116300', 'W', '121.98104', '39.62843');
INSERT INTO `tb_region` VALUES (490, 481, '普兰店', '普兰店市', '中国,辽宁省,大连市,普兰店市', 3, 'pulandian', '0411', '116200', 'P', '121.96316', '39.39465');
INSERT INTO `tb_region` VALUES (491, 481, '庄河', '庄河市', '中国,辽宁省,大连市,庄河市', 3, 'zhuanghe', '0411', '116400', 'Z', '122.96725', '39.68815');
INSERT INTO `tb_region` VALUES (492, 466, '鞍山', '鞍山市', '中国,辽宁省,鞍山市', 2, 'anshan', '0412', '114001', 'A', '122.995632', '41.110626');
INSERT INTO `tb_region` VALUES (493, 492, '铁东', '铁东区', '中国,辽宁省,鞍山市,铁东区', 3, 'tiedong', '0412', '114001', 'T', '122.99085', '41.08975');
INSERT INTO `tb_region` VALUES (494, 492, '铁西', '铁西区', '中国,辽宁省,鞍山市,铁西区', 3, 'tiexi', '0413', '114013', 'T', '122.96967', '41.11977');
INSERT INTO `tb_region` VALUES (495, 492, '立山', '立山区', '中国,辽宁省,鞍山市,立山区', 3, 'lishan', '0414', '114031', 'L', '123.02948', '41.15008');
INSERT INTO `tb_region` VALUES (496, 492, '千山', '千山区', '中国,辽宁省,鞍山市,千山区', 3, 'qianshan', '0415', '114041', 'Q', '122.96048', '41.07507');
INSERT INTO `tb_region` VALUES (497, 492, '台安', '台安县', '中国,辽宁省,鞍山市,台安县', 3, 'tai\'an', '0417', '114100', 'T', '122.43585', '41.41265');
INSERT INTO `tb_region` VALUES (498, 492, '岫岩', '岫岩满族自治县', '中国,辽宁省,鞍山市,岫岩满族自治县', 3, 'xiuyan', '0418', '114300', 'X', '123.28875', '40.27996');
INSERT INTO `tb_region` VALUES (499, 492, '海城', '海城市', '中国,辽宁省,鞍山市,海城市', 3, 'haicheng', '0416', '114200', 'H', '122.68457', '40.88142');
INSERT INTO `tb_region` VALUES (500, 466, '抚顺', '抚顺市', '中国,辽宁省,抚顺市', 2, 'fushun', '024', '113008', 'F', '123.921109', '41.875956');
INSERT INTO `tb_region` VALUES (501, 500, '新抚', '新抚区', '中国,辽宁省,抚顺市,新抚区', 3, 'xinfu', '024', '113008', 'X', '123.91264', '41.86205');
INSERT INTO `tb_region` VALUES (502, 500, '东洲', '东洲区', '中国,辽宁省,抚顺市,东洲区', 3, 'dongzhou', '024', '113003', 'D', '124.03759', '41.8519');
INSERT INTO `tb_region` VALUES (503, 500, '望花', '望花区', '中国,辽宁省,抚顺市,望花区', 3, 'wanghua', '024', '113001', 'W', '123.78283', '41.85532');
INSERT INTO `tb_region` VALUES (504, 500, '顺城', '顺城区', '中国,辽宁省,抚顺市,顺城区', 3, 'shuncheng', '024', '113006', 'S', '123.94506', '41.88321');
INSERT INTO `tb_region` VALUES (505, 500, '抚顺', '抚顺县', '中国,辽宁省,抚顺市,抚顺县', 3, 'fushun', '024', '113006', 'F', '124.17755', '41.71217');
INSERT INTO `tb_region` VALUES (506, 500, '新宾', '新宾满族自治县', '中国,辽宁省,抚顺市,新宾满族自治县', 3, 'xinbin', '024', '113200', 'X', '125.04049', '41.73409');
INSERT INTO `tb_region` VALUES (507, 500, '清原', '清原满族自治县', '中国,辽宁省,抚顺市,清原满族自治县', 3, 'qingyuan', '024', '113300', 'Q', '124.92807', '42.10221');
INSERT INTO `tb_region` VALUES (508, 466, '本溪', '本溪市', '中国,辽宁省,本溪市', 2, 'benxi', '0414', '117000', 'B', '123.770519', '41.297909');
INSERT INTO `tb_region` VALUES (509, 508, '平山', '平山区', '中国,辽宁省,本溪市,平山区', 3, 'pingshan', '0414', '117000', 'P', '123.76892', '41.2997');
INSERT INTO `tb_region` VALUES (510, 508, '溪湖', '溪湖区', '中国,辽宁省,本溪市,溪湖区', 3, 'xihu', '0414', '117002', 'X', '123.76764', '41.32921');
INSERT INTO `tb_region` VALUES (511, 508, '明山', '明山区', '中国,辽宁省,本溪市,明山区', 3, 'mingshan', '0414', '117021', 'M', '123.81746', '41.30827');
INSERT INTO `tb_region` VALUES (512, 508, '南芬', '南芬区', '中国,辽宁省,本溪市,南芬区', 3, 'nanfen', '0414', '117014', 'N', '123.74523', '41.1006');
INSERT INTO `tb_region` VALUES (513, 508, '本溪', '本溪满族自治县', '中国,辽宁省,本溪市,本溪满族自治县', 3, 'benxi', '0414', '117100', 'B', '124.12741', '41.30059');
INSERT INTO `tb_region` VALUES (514, 508, '桓仁', '桓仁满族自治县', '中国,辽宁省,本溪市,桓仁满族自治县', 3, 'huanren', '0414', '117200', 'H', '125.36062', '41.26798');
INSERT INTO `tb_region` VALUES (515, 466, '丹东', '丹东市', '中国,辽宁省,丹东市', 2, 'dandong', '0415', '118000', 'D', '124.383044', '40.124296');
INSERT INTO `tb_region` VALUES (516, 515, '元宝', '元宝区', '中国,辽宁省,丹东市,元宝区', 3, 'yuanbao', '0415', '118000', 'Y', '124.39575', '40.13651');
INSERT INTO `tb_region` VALUES (517, 515, '振兴', '振兴区', '中国,辽宁省,丹东市,振兴区', 3, 'zhenxing', '0415', '118002', 'Z', '124.36035', '40.10489');
INSERT INTO `tb_region` VALUES (518, 515, '振安', '振安区', '中国,辽宁省,丹东市,振安区', 3, 'zhen\'an', '0415', '118001', 'Z', '124.42816', '40.15826');
INSERT INTO `tb_region` VALUES (519, 515, '宽甸', '宽甸满族自治县', '中国,辽宁省,丹东市,宽甸满族自治县', 3, 'kuandian', '0415', '118200', 'K', '124.78247', '40.73187');
INSERT INTO `tb_region` VALUES (520, 515, '东港', '东港市', '中国,辽宁省,丹东市,东港市', 3, 'donggang', '0415', '118300', 'D', '124.16287', '39.86256');
INSERT INTO `tb_region` VALUES (521, 515, '凤城', '凤城市', '中国,辽宁省,丹东市,凤城市', 3, 'fengcheng', '0415', '118100', 'F', '124.06671', '40.45302');
INSERT INTO `tb_region` VALUES (522, 466, '锦州', '锦州市', '中国,辽宁省,锦州市', 2, 'jinzhou', '0416', '121000', 'J', '121.135742', '41.119269');
INSERT INTO `tb_region` VALUES (523, 522, '古塔', '古塔区', '中国,辽宁省,锦州市,古塔区', 3, 'guta', '0416', '121001', 'G', '121.12832', '41.11725');
INSERT INTO `tb_region` VALUES (524, 522, '凌河', '凌河区', '中国,辽宁省,锦州市,凌河区', 3, 'linghe', '0416', '121000', 'L', '121.15089', '41.11496');
INSERT INTO `tb_region` VALUES (525, 522, '太和', '太和区', '中国,辽宁省,锦州市,太和区', 3, 'taihe', '0416', '121011', 'T', '121.10354', '41.10929');
INSERT INTO `tb_region` VALUES (526, 522, '黑山', '黑山县', '中国,辽宁省,锦州市,黑山县', 3, 'heishan', '0416', '121400', 'H', '122.12081', '41.69417');
INSERT INTO `tb_region` VALUES (527, 522, '义县', '义县', '中国,辽宁省,锦州市,义县', 3, 'yixian', '0416', '121100', 'Y', '121.24035', '41.53458');
INSERT INTO `tb_region` VALUES (528, 522, '凌海', '凌海市', '中国,辽宁省,锦州市,凌海市', 3, 'linghai', '0416', '121200', 'L', '121.35705', '41.1737');
INSERT INTO `tb_region` VALUES (529, 522, '北镇', '北镇市', '中国,辽宁省,锦州市,北镇市', 3, 'beizhen', '0416', '121300', 'B', '121.79858', '41.59537');
INSERT INTO `tb_region` VALUES (530, 466, '营口', '营口市', '中国,辽宁省,营口市', 2, 'yingkou', '0417', '115003', 'Y', '122.235151', '40.667432');
INSERT INTO `tb_region` VALUES (531, 530, '站前', '站前区', '中国,辽宁省,营口市,站前区', 3, 'zhanqian', '0417', '115002', 'Z', '122.25896', '40.67266');
INSERT INTO `tb_region` VALUES (532, 530, '西市', '西市区', '中国,辽宁省,营口市,西市区', 3, 'xishi', '0417', '115004', 'X', '122.20641', '40.6664');
INSERT INTO `tb_region` VALUES (533, 530, '鲅鱼圈', '鲅鱼圈区', '中国,辽宁省,营口市,鲅鱼圈区', 3, 'bayuquan', '0417', '115007', 'B', '122.13266', '40.26865');
INSERT INTO `tb_region` VALUES (534, 530, '老边', '老边区', '中国,辽宁省,营口市,老边区', 3, 'laobian', '0417', '115005', 'L', '122.37996', '40.6803');
INSERT INTO `tb_region` VALUES (535, 530, '盖州', '盖州市', '中国,辽宁省,营口市,盖州市', 3, 'gaizhou', '0417', '115200', 'G', '122.35464', '40.40446');
INSERT INTO `tb_region` VALUES (536, 530, '大石桥', '大石桥市', '中国,辽宁省,营口市,大石桥市', 3, 'dashiqiao', '0417', '115100', 'D', '122.50927', '40.64567');
INSERT INTO `tb_region` VALUES (537, 466, '阜新', '阜新市', '中国,辽宁省,阜新市', 2, 'fuxin', '0418', '123000', 'F', '121.648962', '42.011796');
INSERT INTO `tb_region` VALUES (538, 537, '海州', '海州区', '中国,辽宁省,阜新市,海州区', 3, 'haizhou', '0418', '123000', 'H', '121.65626', '42.01336');
INSERT INTO `tb_region` VALUES (539, 537, '新邱', '新邱区', '中国,辽宁省,阜新市,新邱区', 3, 'xinqiu', '0418', '123005', 'X', '121.79251', '42.09181');
INSERT INTO `tb_region` VALUES (540, 537, '太平', '太平区', '中国,辽宁省,阜新市,太平区', 3, 'taiping', '0418', '123003', 'T', '121.67865', '42.01065');
INSERT INTO `tb_region` VALUES (541, 537, '清河门', '清河门区', '中国,辽宁省,阜新市,清河门区', 3, 'qinghemen', '0418', '123006', 'Q', '121.4161', '41.78309');
INSERT INTO `tb_region` VALUES (542, 537, '细河', '细河区', '中国,辽宁省,阜新市,细河区', 3, 'xihe', '0418', '123000', 'X', '121.68013', '42.02533');
INSERT INTO `tb_region` VALUES (543, 537, '阜新', '阜新蒙古族自治县', '中国,辽宁省,阜新市,阜新蒙古族自治县', 3, 'fuxin', '0418', '123100', 'F', '121.75787', '42.0651');
INSERT INTO `tb_region` VALUES (544, 537, '彰武', '彰武县', '中国,辽宁省,阜新市,彰武县', 3, 'zhangwu', '0418', '123200', 'Z', '122.54022', '42.38625');
INSERT INTO `tb_region` VALUES (545, 466, '辽阳', '辽阳市', '中国,辽宁省,辽阳市', 2, 'liaoyang', '0419', '111000', 'L', '123.18152', '41.269402');
INSERT INTO `tb_region` VALUES (546, 545, '白塔', '白塔区', '中国,辽宁省,辽阳市,白塔区', 3, 'baita', '0419', '111000', 'B', '123.1747', '41.27025');
INSERT INTO `tb_region` VALUES (547, 545, '文圣', '文圣区', '中国,辽宁省,辽阳市,文圣区', 3, 'wensheng', '0419', '111000', 'W', '123.18521', '41.26267');
INSERT INTO `tb_region` VALUES (548, 545, '宏伟', '宏伟区', '中国,辽宁省,辽阳市,宏伟区', 3, 'hongwei', '0419', '111003', 'H', '123.1929', '41.21852');
INSERT INTO `tb_region` VALUES (549, 545, '弓长岭', '弓长岭区', '中国,辽宁省,辽阳市,弓长岭区', 3, 'gongchangling', '0419', '111008', 'G', '123.41963', '41.15181');
INSERT INTO `tb_region` VALUES (550, 545, '太子河', '太子河区', '中国,辽宁省,辽阳市,太子河区', 3, 'taizihe', '0419', '111000', 'T', '123.18182', '41.25337');
INSERT INTO `tb_region` VALUES (551, 545, '辽阳', '辽阳县', '中国,辽宁省,辽阳市,辽阳县', 3, 'liaoyang', '0419', '111200', 'L', '123.10574', '41.20542');
INSERT INTO `tb_region` VALUES (552, 545, '灯塔', '灯塔市', '中国,辽宁省,辽阳市,灯塔市', 3, 'dengta', '0419', '111300', 'D', '123.33926', '41.42612');
INSERT INTO `tb_region` VALUES (553, 466, '盘锦', '盘锦市', '中国,辽宁省,盘锦市', 2, 'panjin', '0427', '124010', 'P', '122.06957', '41.124484');
INSERT INTO `tb_region` VALUES (554, 553, '双台子', '双台子区', '中国,辽宁省,盘锦市,双台子区', 3, 'shuangtaizi', '0427', '124000', 'S', '122.06011', '41.1906');
INSERT INTO `tb_region` VALUES (555, 553, '兴隆台', '兴隆台区', '中国,辽宁省,盘锦市,兴隆台区', 3, 'xinglongtai', '0427', '124010', 'X', '122.07529', '41.12402');
INSERT INTO `tb_region` VALUES (556, 553, '大洼', '大洼县', '中国,辽宁省,盘锦市,大洼县', 3, 'dawa', '0427', '124200', 'D', '122.08239', '41.00244');
INSERT INTO `tb_region` VALUES (557, 553, '盘山', '盘山县', '中国,辽宁省,盘锦市,盘山县', 3, 'panshan', '0427', '124000', 'P', '121.99777', '41.23805');
INSERT INTO `tb_region` VALUES (558, 466, '铁岭', '铁岭市', '中国,辽宁省,铁岭市', 2, 'tieling', '024', '112000', 'T', '123.844279', '42.290585');
INSERT INTO `tb_region` VALUES (559, 558, '银州', '银州区', '中国,辽宁省,铁岭市,银州区', 3, 'yinzhou', '024', '112000', 'Y', '123.8573', '42.29507');
INSERT INTO `tb_region` VALUES (560, 558, '清河', '清河区', '中国,辽宁省,铁岭市,清河区', 3, 'qinghe', '024', '112003', 'Q', '124.15911', '42.54679');
INSERT INTO `tb_region` VALUES (561, 558, '铁岭', '铁岭县', '中国,辽宁省,铁岭市,铁岭县', 3, 'tieling', '024', '112000', 'T', '123.77325', '42.22498');
INSERT INTO `tb_region` VALUES (562, 558, '西丰', '西丰县', '中国,辽宁省,铁岭市,西丰县', 3, 'xifeng', '024', '112400', 'X', '124.7304', '42.73756');
INSERT INTO `tb_region` VALUES (563, 558, '昌图', '昌图县', '中国,辽宁省,铁岭市,昌图县', 3, 'changtu', '024', '112500', 'C', '124.11206', '42.78428');
INSERT INTO `tb_region` VALUES (564, 558, '调兵山', '调兵山市', '中国,辽宁省,铁岭市,调兵山市', 3, 'diaobingshan', '024', '112700', 'D', '123.56689', '42.4675');
INSERT INTO `tb_region` VALUES (565, 558, '开原', '开原市', '中国,辽宁省,铁岭市,开原市', 3, 'kaiyuan', '024', '112300', 'K', '124.03945', '42.54585');
INSERT INTO `tb_region` VALUES (566, 466, '朝阳', '朝阳市', '中国,辽宁省,朝阳市', 2, 'chaoyang', '0421', '122000', 'C', '120.451176', '41.576758');
INSERT INTO `tb_region` VALUES (567, 566, '双塔', '双塔区', '中国,辽宁省,朝阳市,双塔区', 3, 'shuangta', '0421', '122000', 'S', '120.45385', '41.566');
INSERT INTO `tb_region` VALUES (568, 566, '龙城', '龙城区', '中国,辽宁省,朝阳市,龙城区', 3, 'longcheng', '0421', '122000', 'L', '120.43719', '41.59264');
INSERT INTO `tb_region` VALUES (569, 566, '朝阳', '朝阳县', '中国,辽宁省,朝阳市,朝阳县', 3, 'chaoyang', '0421', '122000', 'C', '120.17401', '41.4324');
INSERT INTO `tb_region` VALUES (570, 566, '建平', '建平县', '中国,辽宁省,朝阳市,建平县', 3, 'jianping', '0421', '122400', 'J', '119.64392', '41.40315');
INSERT INTO `tb_region` VALUES (571, 566, '喀喇沁左翼', '喀喇沁左翼蒙古族自治县', '中国,辽宁省,朝阳市,喀喇沁左翼蒙古族自治县', 3, 'kalaqinzuoyi', '0421', '122300', 'K', '119.74185', '41.12801');
INSERT INTO `tb_region` VALUES (572, 566, '北票', '北票市', '中国,辽宁省,朝阳市,北票市', 3, 'beipiao', '0421', '122100', 'B', '120.76977', '41.80196');
INSERT INTO `tb_region` VALUES (573, 566, '凌源', '凌源市', '中国,辽宁省,朝阳市,凌源市', 3, 'lingyuan', '0421', '122500', 'L', '119.40148', '41.24558');
INSERT INTO `tb_region` VALUES (574, 466, '葫芦岛', '葫芦岛市', '中国,辽宁省,葫芦岛市', 2, 'huludao', '0429', '125000', 'H', '120.856394', '40.755572');
INSERT INTO `tb_region` VALUES (575, 574, '连山', '连山区', '中国,辽宁省,葫芦岛市,连山区', 3, 'lianshan', '0429', '125001', 'L', '120.86393', '40.75554');
INSERT INTO `tb_region` VALUES (576, 574, '龙港', '龙港区', '中国,辽宁省,葫芦岛市,龙港区', 3, 'longgang', '0429', '125003', 'L', '120.94866', '40.71919');
INSERT INTO `tb_region` VALUES (577, 574, '南票', '南票区', '中国,辽宁省,葫芦岛市,南票区', 3, 'nanpiao', '0429', '125027', 'N', '120.74978', '41.10707');
INSERT INTO `tb_region` VALUES (578, 574, '绥中', '绥中县', '中国,辽宁省,葫芦岛市,绥中县', 3, 'suizhong', '0429', '125200', 'S', '120.34451', '40.32552');
INSERT INTO `tb_region` VALUES (579, 574, '建昌', '建昌县', '中国,辽宁省,葫芦岛市,建昌县', 3, 'jianchang', '0429', '125300', 'J', '119.8377', '40.82448');
INSERT INTO `tb_region` VALUES (580, 574, '兴城', '兴城市', '中国,辽宁省,葫芦岛市,兴城市', 3, 'xingcheng', '0429', '125100', 'X', '120.72537', '40.61492');
INSERT INTO `tb_region` VALUES (581, 466, '金普新区', '金普新区', '中国,辽宁省,金普新区', 2, 'jinpuxinqu', '0411', '116100', 'J', '121.789627', '39.055451');
INSERT INTO `tb_region` VALUES (582, 581, '金州新区', '金州新区', '中国,辽宁省,金普新区,金州新区', 3, 'jinzhouxinqu', '0411', '116100', 'J', '121.784821', '39.052252');
INSERT INTO `tb_region` VALUES (583, 581, '普湾新区', '普湾新区', '中国,辽宁省,金普新区,普湾新区', 3, 'puwanxinqu', '0411', '116200', 'P', '121.812812', '39.330093');
INSERT INTO `tb_region` VALUES (584, 581, '保税区', '保税区', '中国,辽宁省,金普新区,保税区', 3, 'baoshuiqu', '0411', '116100', 'B', '121.94289', '39.224614');
INSERT INTO `tb_region` VALUES (585, 0, '吉林', '吉林省', '中国,吉林省', 1, 'jilin', '', '', 'J', '125.3245', '43.886841');
INSERT INTO `tb_region` VALUES (586, 585, '长春', '长春市', '中国,吉林省,长春市', 2, 'changchun', '0431', '130022', 'C', '125.3245', '43.886841');
INSERT INTO `tb_region` VALUES (587, 586, '南关', '南关区', '中国,吉林省,长春市,南关区', 3, 'nanguan', '0431', '130022', 'N', '125.35035', '43.86401');
INSERT INTO `tb_region` VALUES (588, 586, '宽城', '宽城区', '中国,吉林省,长春市,宽城区', 3, 'kuancheng', '0431', '130051', 'K', '125.32635', '43.90182');
INSERT INTO `tb_region` VALUES (589, 586, '朝阳', '朝阳区', '中国,吉林省,长春市,朝阳区', 3, 'chaoyang', '0431', '130012', 'C', '125.2883', '43.83339');
INSERT INTO `tb_region` VALUES (590, 586, '二道', '二道区', '中国,吉林省,长春市,二道区', 3, 'erdao', '0431', '130031', 'E', '125.37429', '43.86501');
INSERT INTO `tb_region` VALUES (591, 586, '绿园', '绿园区', '中国,吉林省,长春市,绿园区', 3, 'lvyuan', '0431', '130062', 'L', '125.25582', '43.88045');
INSERT INTO `tb_region` VALUES (592, 586, '双阳', '双阳区', '中国,吉林省,长春市,双阳区', 3, 'shuangyang', '0431', '130600', 'S', '125.65631', '43.52803');
INSERT INTO `tb_region` VALUES (593, 586, '九台', '九台区', '中国,吉林省,长春市,九台区', 3, 'jiutai', '0431', '130500', 'J', '125.8395', '44.15163');
INSERT INTO `tb_region` VALUES (594, 586, '农安', '农安县', '中国,吉林省,长春市,农安县', 3, 'nong\'an', '0431', '130200', 'N', '125.18481', '44.43265');
INSERT INTO `tb_region` VALUES (595, 586, '榆树', '榆树市', '中国,吉林省,长春市,榆树市', 3, 'yushu', '0431', '130400', 'Y', '126.55688', '44.82523');
INSERT INTO `tb_region` VALUES (596, 586, '德惠', '德惠市', '中国,吉林省,长春市,德惠市', 3, 'dehui', '0431', '130300', 'D', '125.70538', '44.53719');
INSERT INTO `tb_region` VALUES (597, 585, '吉林', '吉林市', '中国,吉林省,吉林市', 2, 'jilin', '0432', '132011', 'J', '126.55302', '43.843577');
INSERT INTO `tb_region` VALUES (598, 597, '昌邑', '昌邑区', '中国,吉林省,吉林市,昌邑区', 3, 'changyi', '0432', '132002', 'C', '126.57424', '43.88183');
INSERT INTO `tb_region` VALUES (599, 597, '龙潭', '龙潭区', '中国,吉林省,吉林市,龙潭区', 3, 'longtan', '0432', '132021', 'L', '126.56213', '43.91054');
INSERT INTO `tb_region` VALUES (600, 597, '船营', '船营区', '中国,吉林省,吉林市,船营区', 3, 'chuanying', '0432', '132011', 'C', '126.54096', '43.83344');
INSERT INTO `tb_region` VALUES (601, 597, '丰满', '丰满区', '中国,吉林省,吉林市,丰满区', 3, 'fengman', '0432', '132013', 'F', '126.56237', '43.82236');
INSERT INTO `tb_region` VALUES (602, 597, '永吉', '永吉县', '中国,吉林省,吉林市,永吉县', 3, 'yongji', '0432', '132200', 'Y', '126.4963', '43.67197');
INSERT INTO `tb_region` VALUES (603, 597, '蛟河', '蛟河市', '中国,吉林省,吉林市,蛟河市', 3, 'jiaohe', '0432', '132500', 'J', '127.34426', '43.72696');
INSERT INTO `tb_region` VALUES (604, 597, '桦甸', '桦甸市', '中国,吉林省,吉林市,桦甸市', 3, 'huadian', '0432', '132400', 'H', '126.74624', '42.97206');
INSERT INTO `tb_region` VALUES (605, 597, '舒兰', '舒兰市', '中国,吉林省,吉林市,舒兰市', 3, 'shulan', '0432', '132600', 'S', '126.9653', '44.40582');
INSERT INTO `tb_region` VALUES (606, 597, '磐石', '磐石市', '中国,吉林省,吉林市,磐石市', 3, 'panshi', '0432', '132300', 'P', '126.0625', '42.94628');
INSERT INTO `tb_region` VALUES (607, 585, '四平', '四平市', '中国,吉林省,四平市', 2, 'siping', '0434', '136000', 'S', '124.370785', '43.170344');
INSERT INTO `tb_region` VALUES (608, 607, '铁西', '铁西区', '中国,吉林省,四平市,铁西区', 3, 'tiexi', '0434', '136000', 'T', '124.37369', '43.17456');
INSERT INTO `tb_region` VALUES (609, 607, '铁东', '铁东区', '中国,吉林省,四平市,铁东区', 3, 'tiedong', '0434', '136001', 'T', '124.40976', '43.16241');
INSERT INTO `tb_region` VALUES (610, 607, '梨树', '梨树县', '中国,吉林省,四平市,梨树县', 3, 'lishu', '0434', '136500', 'L', '124.33563', '43.30717');
INSERT INTO `tb_region` VALUES (611, 607, '伊通', '伊通满族自治县', '中国,吉林省,四平市,伊通满族自治县', 3, 'yitong', '0434', '130700', 'Y', '125.30596', '43.34434');
INSERT INTO `tb_region` VALUES (612, 607, '公主岭', '公主岭市', '中国,吉林省,四平市,公主岭市', 3, 'gongzhuling', '0434', '136100', 'G', '124.82266', '43.50453');
INSERT INTO `tb_region` VALUES (613, 607, '双辽', '双辽市', '中国,吉林省,四平市,双辽市', 3, 'shuangliao', '0434', '136400', 'S', '123.50106', '43.52099');
INSERT INTO `tb_region` VALUES (614, 585, '辽源', '辽源市', '中国,吉林省,辽源市', 2, 'liaoyuan', '0437', '136200', 'L', '125.145349', '42.902692');
INSERT INTO `tb_region` VALUES (615, 614, '龙山', '龙山区', '中国,吉林省,辽源市,龙山区', 3, 'longshan', '0437', '136200', 'L', '125.13641', '42.89714');
INSERT INTO `tb_region` VALUES (616, 614, '西安', '西安区', '中国,吉林省,辽源市,西安区', 3, 'xi\'an', '0437', '136201', 'X', '125.14904', '42.927');
INSERT INTO `tb_region` VALUES (617, 614, '东丰', '东丰县', '中国,吉林省,辽源市,东丰县', 3, 'dongfeng', '0437', '136300', 'D', '125.53244', '42.6783');
INSERT INTO `tb_region` VALUES (618, 614, '东辽', '东辽县', '中国,吉林省,辽源市,东辽县', 3, 'dongliao', '0437', '136600', 'D', '124.98596', '42.92492');
INSERT INTO `tb_region` VALUES (619, 585, '通化', '通化市', '中国,吉林省,通化市', 2, 'tonghua', '0435', '134001', 'T', '125.936501', '41.721177');
INSERT INTO `tb_region` VALUES (620, 619, '东昌', '东昌区', '中国,吉林省,通化市,东昌区', 3, 'dongchang', '0435', '134001', 'D', '125.9551', '41.72849');
INSERT INTO `tb_region` VALUES (621, 619, '二道江', '二道江区', '中国,吉林省,通化市,二道江区', 3, 'erdaojiang', '0435', '134003', 'E', '126.04257', '41.7741');
INSERT INTO `tb_region` VALUES (622, 619, '通化', '通化县', '中国,吉林省,通化市,通化县', 3, 'tonghua', '0435', '134100', 'T', '125.75936', '41.67928');
INSERT INTO `tb_region` VALUES (623, 619, '辉南', '辉南县', '中国,吉林省,通化市,辉南县', 3, 'huinan', '0435', '135100', 'H', '126.04684', '42.68497');
INSERT INTO `tb_region` VALUES (624, 619, '柳河', '柳河县', '中国,吉林省,通化市,柳河县', 3, 'liuhe', '0435', '135300', 'L', '125.74475', '42.28468');
INSERT INTO `tb_region` VALUES (625, 619, '梅河口', '梅河口市', '中国,吉林省,通化市,梅河口市', 3, 'meihekou', '0435', '135000', 'M', '125.71041', '42.53828');
INSERT INTO `tb_region` VALUES (626, 619, '集安', '集安市', '中国,吉林省,通化市,集安市', 3, 'ji\'an', '0435', '134200', 'J', '126.18829', '41.12268');
INSERT INTO `tb_region` VALUES (627, 585, '白山', '白山市', '中国,吉林省,白山市', 2, 'baishan', '0439', '134300', 'B', '126.427839', '41.942505');
INSERT INTO `tb_region` VALUES (628, 627, '浑江', '浑江区', '中国,吉林省,白山市,浑江区', 3, 'hunjiang', '0439', '134300', 'H', '126.422342', '41.945656');
INSERT INTO `tb_region` VALUES (629, 627, '江源', '江源区', '中国,吉林省,白山市,江源区', 3, 'jiangyuan', '0439', '134700', 'J', '126.59079', '42.05664');
INSERT INTO `tb_region` VALUES (630, 627, '抚松', '抚松县', '中国,吉林省,白山市,抚松县', 3, 'fusong', '0439', '134500', 'F', '127.2803', '42.34198');
INSERT INTO `tb_region` VALUES (631, 627, '靖宇', '靖宇县', '中国,吉林省,白山市,靖宇县', 3, 'jingyu', '0439', '135200', 'J', '126.81308', '42.38863');
INSERT INTO `tb_region` VALUES (632, 627, '长白', '长白朝鲜族自治县', '中国,吉林省,白山市,长白朝鲜族自治县', 3, 'changbai', '0439', '134400', 'C', '128.20047', '41.41996');
INSERT INTO `tb_region` VALUES (633, 627, '临江', '临江市', '中国,吉林省,白山市,临江市', 3, 'linjiang', '0439', '134600', 'L', '126.91751', '41.81142');
INSERT INTO `tb_region` VALUES (634, 585, '松原', '松原市', '中国,吉林省,松原市', 2, 'songyuan', '0438', '138000', 'S', '124.823608', '45.118243');
INSERT INTO `tb_region` VALUES (635, 634, '宁江', '宁江区', '中国,吉林省,松原市,宁江区', 3, 'ningjiang', '0438', '138000', 'N', '124.81689', '45.17175');
INSERT INTO `tb_region` VALUES (636, 634, '前郭尔罗斯', '前郭尔罗斯蒙古族自治县', '中国,吉林省,松原市,前郭尔罗斯蒙古族自治县', 3, 'qianguoerluosi', '0438', '138000', 'Q', '124.82351', '45.11726');
INSERT INTO `tb_region` VALUES (637, 634, '长岭', '长岭县', '中国,吉林省,松原市,长岭县', 3, 'changling', '0438', '131500', 'C', '123.96725', '44.27581');
INSERT INTO `tb_region` VALUES (638, 634, '乾安', '乾安县', '中国,吉林省,松原市,乾安县', 3, 'qian\'an', '0438', '131400', 'Q', '124.02737', '45.01068');
INSERT INTO `tb_region` VALUES (639, 634, '扶余', '扶余市', '中国,吉林省,松原市,扶余市', 3, 'fuyu', '0438', '131200', 'F', '126.042758', '44.986199');
INSERT INTO `tb_region` VALUES (640, 585, '白城', '白城市', '中国,吉林省,白城市', 2, 'baicheng', '0436', '137000', 'B', '122.841114', '45.619026');
INSERT INTO `tb_region` VALUES (641, 640, '洮北', '洮北区', '中国,吉林省,白城市,洮北区', 3, 'taobei', '0436', '137000', 'T', '122.85104', '45.62167');
INSERT INTO `tb_region` VALUES (642, 640, '镇赉', '镇赉县', '中国,吉林省,白城市,镇赉县', 3, 'zhenlai', '0436', '137300', 'Z', '123.19924', '45.84779');
INSERT INTO `tb_region` VALUES (643, 640, '通榆', '通榆县', '中国,吉林省,白城市,通榆县', 3, 'tongyu', '0436', '137200', 'T', '123.08761', '44.81388');
INSERT INTO `tb_region` VALUES (644, 640, '洮南', '洮南市', '中国,吉林省,白城市,洮南市', 3, 'taonan', '0436', '137100', 'T', '122.78772', '45.33502');
INSERT INTO `tb_region` VALUES (645, 640, '大安', '大安市', '中国,吉林省,白城市,大安市', 3, 'da\'an', '0436', '131300', 'D', '124.29519', '45.50846');
INSERT INTO `tb_region` VALUES (646, 585, '延边', '延边朝鲜族自治州', '中国,吉林省,延边朝鲜族自治州', 2, 'yanbian', '0433', '133000', 'Y', '129.513228', '42.904823');
INSERT INTO `tb_region` VALUES (647, 646, '延吉', '延吉市', '中国,吉林省,延边朝鲜族自治州,延吉市', 3, 'yanji', '0433', '133000', 'Y', '129.51357', '42.90682');
INSERT INTO `tb_region` VALUES (648, 646, '图们', '图们市', '中国,吉林省,延边朝鲜族自治州,图们市', 3, 'tumen', '0433', '133100', 'T', '129.84381', '42.96801');
INSERT INTO `tb_region` VALUES (649, 646, '敦化', '敦化市', '中国,吉林省,延边朝鲜族自治州,敦化市', 3, 'dunhua', '0433', '133700', 'D', '128.23242', '43.37304');
INSERT INTO `tb_region` VALUES (650, 646, '珲春', '珲春市', '中国,吉林省,延边朝鲜族自治州,珲春市', 3, 'hunchun', '0433', '133300', 'H', '130.36572', '42.86242');
INSERT INTO `tb_region` VALUES (651, 646, '龙井', '龙井市', '中国,吉林省,延边朝鲜族自治州,龙井市', 3, 'longjing', '0433', '133400', 'L', '129.42584', '42.76804');
INSERT INTO `tb_region` VALUES (652, 646, '和龙', '和龙市', '中国,吉林省,延边朝鲜族自治州,和龙市', 3, 'helong', '0433', '133500', 'H', '129.01077', '42.5464');
INSERT INTO `tb_region` VALUES (653, 646, '汪清', '汪清县', '中国,吉林省,延边朝鲜族自治州,汪清县', 3, 'wangqing', '0433', '133200', 'W', '129.77121', '43.31278');
INSERT INTO `tb_region` VALUES (654, 646, '安图', '安图县', '中国,吉林省,延边朝鲜族自治州,安图县', 3, 'antu', '0433', '133600', 'A', '128.90625', '43.11533');
INSERT INTO `tb_region` VALUES (655, 0, '黑龙江', '黑龙江省', '中国,黑龙江省', 1, 'heilongjiang', '', '', 'H', '126.642464', '45.756967');
INSERT INTO `tb_region` VALUES (656, 655, '哈尔滨', '哈尔滨市', '中国,黑龙江省,哈尔滨市', 2, 'harbin', '0451', '150010', 'H', '126.642464', '45.756967');
INSERT INTO `tb_region` VALUES (657, 656, '道里', '道里区', '中国,黑龙江省,哈尔滨市,道里区', 3, 'daoli', '0451', '150010', 'D', '126.61705', '45.75586');
INSERT INTO `tb_region` VALUES (658, 656, '南岗', '南岗区', '中国,黑龙江省,哈尔滨市,南岗区', 3, 'nangang', '0451', '150006', 'N', '126.66854', '45.75996');
INSERT INTO `tb_region` VALUES (659, 656, '道外', '道外区', '中国,黑龙江省,哈尔滨市,道外区', 3, 'daowai', '0451', '150020', 'D', '126.64938', '45.79187');
INSERT INTO `tb_region` VALUES (660, 656, '平房', '平房区', '中国,黑龙江省,哈尔滨市,平房区', 3, 'pingfang', '0451', '150060', 'P', '126.63729', '45.59777');
INSERT INTO `tb_region` VALUES (661, 656, '松北', '松北区', '中国,黑龙江省,哈尔滨市,松北区', 3, 'songbei', '0451', '150028', 'S', '126.56276', '45.80831');
INSERT INTO `tb_region` VALUES (662, 656, '香坊', '香坊区', '中国,黑龙江省,哈尔滨市,香坊区', 3, 'xiangfang', '0451', '150036', 'X', '126.67968', '45.72383');
INSERT INTO `tb_region` VALUES (663, 656, '呼兰', '呼兰区', '中国,黑龙江省,哈尔滨市,呼兰区', 3, 'hulan', '0451', '150500', 'H', '126.58792', '45.88895');
INSERT INTO `tb_region` VALUES (664, 656, '阿城', '阿城区', '中国,黑龙江省,哈尔滨市,阿城区', 3, 'a\'cheng', '0451', '150300', 'A', '126.97525', '45.54144');
INSERT INTO `tb_region` VALUES (665, 656, '双城', '双城区', '中国,黑龙江省,哈尔滨市,双城区', 3, 'shuangcheng', '0451', '150100', 'S', '126.308784', '45.377942');
INSERT INTO `tb_region` VALUES (666, 656, '依兰', '依兰县', '中国,黑龙江省,哈尔滨市,依兰县', 3, 'yilan', '0451', '154800', 'Y', '129.56817', '46.3247');
INSERT INTO `tb_region` VALUES (667, 656, '方正', '方正县', '中国,黑龙江省,哈尔滨市,方正县', 3, 'fangzheng', '0451', '150800', 'F', '128.82952', '45.85162');
INSERT INTO `tb_region` VALUES (668, 656, '宾县', '宾县', '中国,黑龙江省,哈尔滨市,宾县', 3, 'binxian', '0451', '150400', 'B', '127.48675', '45.75504');
INSERT INTO `tb_region` VALUES (669, 656, '巴彦', '巴彦县', '中国,黑龙江省,哈尔滨市,巴彦县', 3, 'bayan', '0451', '151800', 'B', '127.40799', '46.08148');
INSERT INTO `tb_region` VALUES (670, 656, '木兰', '木兰县', '中国,黑龙江省,哈尔滨市,木兰县', 3, 'mulan', '0451', '151900', 'M', '128.0448', '45.94944');
INSERT INTO `tb_region` VALUES (671, 656, '通河', '通河县', '中国,黑龙江省,哈尔滨市,通河县', 3, 'tonghe', '0451', '150900', 'T', '128.74603', '45.99007');
INSERT INTO `tb_region` VALUES (672, 656, '延寿', '延寿县', '中国,黑龙江省,哈尔滨市,延寿县', 3, 'yanshou', '0451', '150700', 'Y', '128.33419', '45.4554');
INSERT INTO `tb_region` VALUES (673, 656, '尚志', '尚志市', '中国,黑龙江省,哈尔滨市,尚志市', 3, 'shangzhi', '0451', '150600', 'S', '127.96191', '45.21736');
INSERT INTO `tb_region` VALUES (674, 656, '五常', '五常市', '中国,黑龙江省,哈尔滨市,五常市', 3, 'wuchang', '0451', '150200', 'W', '127.16751', '44.93184');
INSERT INTO `tb_region` VALUES (675, 655, '齐齐哈尔', '齐齐哈尔市', '中国,黑龙江省,齐齐哈尔市', 2, 'qiqihar', '0452', '161005', 'Q', '123.953486', '47.348079');
INSERT INTO `tb_region` VALUES (676, 675, '龙沙', '龙沙区', '中国,黑龙江省,齐齐哈尔市,龙沙区', 3, 'longsha', '0452', '161000', 'L', '123.95752', '47.31776');
INSERT INTO `tb_region` VALUES (677, 675, '建华', '建华区', '中国,黑龙江省,齐齐哈尔市,建华区', 3, 'jianhua', '0452', '161006', 'J', '124.0133', '47.36718');
INSERT INTO `tb_region` VALUES (678, 675, '铁锋', '铁锋区', '中国,黑龙江省,齐齐哈尔市,铁锋区', 3, 'tiefeng', '0452', '161000', 'T', '123.97821', '47.34075');
INSERT INTO `tb_region` VALUES (679, 675, '昂昂溪', '昂昂溪区', '中国,黑龙江省,齐齐哈尔市,昂昂溪区', 3, 'angangxi', '0452', '161031', 'A', '123.82229', '47.15513');
INSERT INTO `tb_region` VALUES (680, 675, '富拉尔基', '富拉尔基区', '中国,黑龙江省,齐齐哈尔市,富拉尔基区', 3, 'fulaerji', '0452', '161041', 'F', '123.62918', '47.20884');
INSERT INTO `tb_region` VALUES (681, 675, '碾子山', '碾子山区', '中国,黑龙江省,齐齐哈尔市,碾子山区', 3, 'nianzishan', '0452', '161046', 'N', '122.88183', '47.51662');
INSERT INTO `tb_region` VALUES (682, 675, '梅里斯', '梅里斯达斡尔族区', '中国,黑龙江省,齐齐哈尔市,梅里斯达斡尔族区', 3, 'meilisi', '0452', '161021', 'M', '123.75274', '47.30946');
INSERT INTO `tb_region` VALUES (683, 675, '龙江', '龙江县', '中国,黑龙江省,齐齐哈尔市,龙江县', 3, 'longjiang', '0452', '161100', 'L', '123.20532', '47.33868');
INSERT INTO `tb_region` VALUES (684, 675, '依安', '依安县', '中国,黑龙江省,齐齐哈尔市,依安县', 3, 'yi\'an', '0452', '161500', 'Y', '125.30896', '47.8931');
INSERT INTO `tb_region` VALUES (685, 675, '泰来', '泰来县', '中国,黑龙江省,齐齐哈尔市,泰来县', 3, 'tailai', '0452', '162400', 'T', '123.42285', '46.39386');
INSERT INTO `tb_region` VALUES (686, 675, '甘南', '甘南县', '中国,黑龙江省,齐齐哈尔市,甘南县', 3, 'gannan', '0452', '162100', 'G', '123.50317', '47.92437');
INSERT INTO `tb_region` VALUES (687, 675, '富裕', '富裕县', '中国,黑龙江省,齐齐哈尔市,富裕县', 3, 'fuyu', '0452', '161200', 'F', '124.47457', '47.77431');
INSERT INTO `tb_region` VALUES (688, 675, '克山', '克山县', '中国,黑龙江省,齐齐哈尔市,克山县', 3, 'keshan', '0452', '161600', 'K', '125.87396', '48.03265');
INSERT INTO `tb_region` VALUES (689, 675, '克东', '克东县', '中国,黑龙江省,齐齐哈尔市,克东县', 3, 'kedong', '0452', '164800', 'K', '126.24917', '48.03828');
INSERT INTO `tb_region` VALUES (690, 675, '拜泉', '拜泉县', '中国,黑龙江省,齐齐哈尔市,拜泉县', 3, 'baiquan', '0452', '164700', 'B', '126.09167', '47.60817');
INSERT INTO `tb_region` VALUES (691, 675, '讷河', '讷河市', '中国,黑龙江省,齐齐哈尔市,讷河市', 3, 'nehe', '0452', '161300', 'N', '124.87713', '48.48388');
INSERT INTO `tb_region` VALUES (692, 655, '鸡西', '鸡西市', '中国,黑龙江省,鸡西市', 2, 'jixi', '0467', '158100', 'J', '130.975966', '45.300046');
INSERT INTO `tb_region` VALUES (693, 692, '鸡冠', '鸡冠区', '中国,黑龙江省,鸡西市,鸡冠区', 3, 'jiguan', '0467', '158100', 'J', '130.98139', '45.30396');
INSERT INTO `tb_region` VALUES (694, 692, '恒山', '恒山区', '中国,黑龙江省,鸡西市,恒山区', 3, 'hengshan', '0467', '158130', 'H', '130.90493', '45.21071');
INSERT INTO `tb_region` VALUES (695, 692, '滴道', '滴道区', '中国,黑龙江省,鸡西市,滴道区', 3, 'didao', '0467', '158150', 'D', '130.84841', '45.35109');
INSERT INTO `tb_region` VALUES (696, 692, '梨树', '梨树区', '中国,黑龙江省,鸡西市,梨树区', 3, 'lishu', '0467', '158160', 'L', '130.69848', '45.09037');
INSERT INTO `tb_region` VALUES (697, 692, '城子河', '城子河区', '中国,黑龙江省,鸡西市,城子河区', 3, 'chengzihe', '0467', '158170', 'C', '131.01132', '45.33689');
INSERT INTO `tb_region` VALUES (698, 692, '麻山', '麻山区', '中国,黑龙江省,鸡西市,麻山区', 3, 'mashan', '0467', '158180', 'M', '130.47811', '45.21209');
INSERT INTO `tb_region` VALUES (699, 692, '鸡东', '鸡东县', '中国,黑龙江省,鸡西市,鸡东县', 3, 'jidong', '0467', '158200', 'J', '131.12423', '45.26025');
INSERT INTO `tb_region` VALUES (700, 692, '虎林', '虎林市', '中国,黑龙江省,鸡西市,虎林市', 3, 'hulin', '0467', '158400', 'H', '132.93679', '45.76291');
INSERT INTO `tb_region` VALUES (701, 692, '密山', '密山市', '中国,黑龙江省,鸡西市,密山市', 3, 'mishan', '0467', '158300', 'M', '131.84625', '45.5297');
INSERT INTO `tb_region` VALUES (702, 655, '鹤岗', '鹤岗市', '中国,黑龙江省,鹤岗市', 2, 'hegang', '0468', '154100', 'H', '130.277487', '47.332085');
INSERT INTO `tb_region` VALUES (703, 702, '向阳', '向阳区', '中国,黑龙江省,鹤岗市,向阳区', 3, 'xiangyang', '0468', '154100', 'X', '130.2943', '47.34247');
INSERT INTO `tb_region` VALUES (704, 702, '工农', '工农区', '中国,黑龙江省,鹤岗市,工农区', 3, 'gongnong', '0468', '154101', 'G', '130.27468', '47.31869');
INSERT INTO `tb_region` VALUES (705, 702, '南山', '南山区', '中国,黑龙江省,鹤岗市,南山区', 3, 'nanshan', '0468', '154104', 'N', '130.27676', '47.31404');
INSERT INTO `tb_region` VALUES (706, 702, '兴安', '兴安区', '中国,黑龙江省,鹤岗市,兴安区', 3, 'xing\'an', '0468', '154102', 'X', '130.23965', '47.2526');
INSERT INTO `tb_region` VALUES (707, 702, '东山', '东山区', '中国,黑龙江省,鹤岗市,东山区', 3, 'dongshan', '0468', '154106', 'D', '130.31706', '47.33853');
INSERT INTO `tb_region` VALUES (708, 702, '兴山', '兴山区', '中国,黑龙江省,鹤岗市,兴山区', 3, 'xingshan', '0468', '154105', 'X', '130.29271', '47.35776');
INSERT INTO `tb_region` VALUES (709, 702, '萝北', '萝北县', '中国,黑龙江省,鹤岗市,萝北县', 3, 'luobei', '0468', '154200', 'L', '130.83346', '47.57959');
INSERT INTO `tb_region` VALUES (710, 702, '绥滨', '绥滨县', '中国,黑龙江省,鹤岗市,绥滨县', 3, 'suibin', '0468', '156200', 'S', '131.86029', '47.2903');
INSERT INTO `tb_region` VALUES (711, 655, '双鸭山', '双鸭山市', '中国,黑龙江省,双鸭山市', 2, 'shuangyashan', '0469', '155100', 'S', '131.157304', '46.643442');
INSERT INTO `tb_region` VALUES (712, 711, '尖山', '尖山区', '中国,黑龙江省,双鸭山市,尖山区', 3, 'jianshan', '0469', '155100', 'J', '131.15841', '46.64635');
INSERT INTO `tb_region` VALUES (713, 711, '岭东', '岭东区', '中国,黑龙江省,双鸭山市,岭东区', 3, 'lingdong', '0469', '155120', 'L', '131.16473', '46.59043');
INSERT INTO `tb_region` VALUES (714, 711, '四方台', '四方台区', '中国,黑龙江省,双鸭山市,四方台区', 3, 'sifangtai', '0469', '155130', 'S', '131.33593', '46.59499');
INSERT INTO `tb_region` VALUES (715, 711, '宝山', '宝山区', '中国,黑龙江省,双鸭山市,宝山区', 3, 'baoshan', '0469', '155131', 'B', '131.4016', '46.57718');
INSERT INTO `tb_region` VALUES (716, 711, '集贤', '集贤县', '中国,黑龙江省,双鸭山市,集贤县', 3, 'jixian', '0469', '155900', 'J', '131.14053', '46.72678');
INSERT INTO `tb_region` VALUES (717, 711, '友谊', '友谊县', '中国,黑龙江省,双鸭山市,友谊县', 3, 'youyi', '0469', '155800', 'Y', '131.80789', '46.76739');
INSERT INTO `tb_region` VALUES (718, 711, '宝清', '宝清县', '中国,黑龙江省,双鸭山市,宝清县', 3, 'baoqing', '0469', '155600', 'B', '132.19695', '46.32716');
INSERT INTO `tb_region` VALUES (719, 711, '饶河', '饶河县', '中国,黑龙江省,双鸭山市,饶河县', 3, 'raohe', '0469', '155700', 'R', '134.01986', '46.79899');
INSERT INTO `tb_region` VALUES (720, 655, '大庆', '大庆市', '中国,黑龙江省,大庆市', 2, 'daqing', '0459', '163000', 'D', '125.11272', '46.590734');
INSERT INTO `tb_region` VALUES (721, 720, '萨尔图', '萨尔图区', '中国,黑龙江省,大庆市,萨尔图区', 3, 'saertu', '0459', '163001', 'S', '125.08792', '46.59359');
INSERT INTO `tb_region` VALUES (722, 720, '龙凤', '龙凤区', '中国,黑龙江省,大庆市,龙凤区', 3, 'longfeng', '0459', '163711', 'L', '125.11657', '46.53273');
INSERT INTO `tb_region` VALUES (723, 720, '让胡路', '让胡路区', '中国,黑龙江省,大庆市,让胡路区', 3, 'ranghulu', '0459', '163712', 'R', '124.87075', '46.6522');
INSERT INTO `tb_region` VALUES (724, 720, '红岗', '红岗区', '中国,黑龙江省,大庆市,红岗区', 3, 'honggang', '0459', '163511', 'H', '124.89248', '46.40128');
INSERT INTO `tb_region` VALUES (725, 720, '大同', '大同区', '中国,黑龙江省,大庆市,大同区', 3, 'datong', '0459', '163515', 'D', '124.81591', '46.03295');
INSERT INTO `tb_region` VALUES (726, 720, '肇州', '肇州县', '中国,黑龙江省,大庆市,肇州县', 3, 'zhaozhou', '0459', '166400', 'Z', '125.27059', '45.70414');
INSERT INTO `tb_region` VALUES (727, 720, '肇源', '肇源县', '中国,黑龙江省,大庆市,肇源县', 3, 'zhaoyuan', '0459', '166500', 'Z', '125.08456', '45.52032');
INSERT INTO `tb_region` VALUES (728, 720, '林甸', '林甸县', '中国,黑龙江省,大庆市,林甸县', 3, 'lindian', '0459', '166300', 'L', '124.87564', '47.18601');
INSERT INTO `tb_region` VALUES (729, 720, '杜尔伯特', '杜尔伯特蒙古族自治县', '中国,黑龙江省,大庆市,杜尔伯特蒙古族自治县', 3, 'duerbote', '0459', '166200', 'D', '124.44937', '46.86507');
INSERT INTO `tb_region` VALUES (730, 655, '伊春', '伊春市', '中国,黑龙江省,伊春市', 2, 'yichun', '0458', '153000', 'Y', '128.899396', '47.724775');
INSERT INTO `tb_region` VALUES (731, 730, '伊春', '伊春区', '中国,黑龙江省,伊春市,伊春区', 3, 'yichun', '0458', '153000', 'Y', '128.90752', '47.728');
INSERT INTO `tb_region` VALUES (732, 730, '南岔', '南岔区', '中国,黑龙江省,伊春市,南岔区', 3, 'nancha', '0458', '153100', 'N', '129.28362', '47.13897');
INSERT INTO `tb_region` VALUES (733, 730, '友好', '友好区', '中国,黑龙江省,伊春市,友好区', 3, 'youhao', '0458', '153031', 'Y', '128.84039', '47.85371');
INSERT INTO `tb_region` VALUES (734, 730, '西林', '西林区', '中国,黑龙江省,伊春市,西林区', 3, 'xilin', '0458', '153025', 'X', '129.31201', '47.48103');
INSERT INTO `tb_region` VALUES (735, 730, '翠峦', '翠峦区', '中国,黑龙江省,伊春市,翠峦区', 3, 'cuiluan', '0458', '153013', 'C', '128.66729', '47.72503');
INSERT INTO `tb_region` VALUES (736, 730, '新青', '新青区', '中国,黑龙江省,伊春市,新青区', 3, 'xinqing', '0458', '153036', 'X', '129.53653', '48.29067');
INSERT INTO `tb_region` VALUES (737, 730, '美溪', '美溪区', '中国,黑龙江省,伊春市,美溪区', 3, 'meixi', '0458', '153021', 'M', '129.13708', '47.63513');
INSERT INTO `tb_region` VALUES (738, 730, '金山屯', '金山屯区', '中国,黑龙江省,伊春市,金山屯区', 3, 'jinshantun', '0458', '153026', 'J', '129.43768', '47.41349');
INSERT INTO `tb_region` VALUES (739, 730, '五营', '五营区', '中国,黑龙江省,伊春市,五营区', 3, 'wuying', '0458', '153033', 'W', '129.24545', '48.10791');
INSERT INTO `tb_region` VALUES (740, 730, '乌马河', '乌马河区', '中国,黑龙江省,伊春市,乌马河区', 3, 'wumahe', '0458', '153011', 'W', '128.79672', '47.728');
INSERT INTO `tb_region` VALUES (741, 730, '汤旺河', '汤旺河区', '中国,黑龙江省,伊春市,汤旺河区', 3, 'tangwanghe', '0458', '153037', 'T', '129.57226', '48.45182');
INSERT INTO `tb_region` VALUES (742, 730, '带岭', '带岭区', '中国,黑龙江省,伊春市,带岭区', 3, 'dailing', '0458', '153106', 'D', '129.02352', '47.02553');
INSERT INTO `tb_region` VALUES (743, 730, '乌伊岭', '乌伊岭区', '中国,黑龙江省,伊春市,乌伊岭区', 3, 'wuyiling', '0458', '153038', 'W', '129.43981', '48.59602');
INSERT INTO `tb_region` VALUES (744, 730, '红星', '红星区', '中国,黑龙江省,伊春市,红星区', 3, 'hongxing', '0458', '153035', 'H', '129.3887', '48.23944');
INSERT INTO `tb_region` VALUES (745, 730, '上甘岭', '上甘岭区', '中国,黑龙江省,伊春市,上甘岭区', 3, 'shangganling', '0458', '153032', 'S', '129.02447', '47.97522');
INSERT INTO `tb_region` VALUES (746, 730, '嘉荫', '嘉荫县', '中国,黑龙江省,伊春市,嘉荫县', 3, 'jiayin', '0458', '153200', 'J', '130.39825', '48.8917');
INSERT INTO `tb_region` VALUES (747, 730, '铁力', '铁力市', '中国,黑龙江省,伊春市,铁力市', 3, 'tieli', '0458', '152500', 'T', '128.0317', '46.98571');
INSERT INTO `tb_region` VALUES (748, 655, '佳木斯', '佳木斯市', '中国,黑龙江省,佳木斯市', 2, 'jiamusi', '0454', '154002', 'J', '130.361634', '46.809606');
INSERT INTO `tb_region` VALUES (749, 748, '向阳', '向阳区', '中国,黑龙江省,佳木斯市,向阳区', 3, 'xiangyang', '0454', '154002', 'X', '130.36519', '46.80778');
INSERT INTO `tb_region` VALUES (750, 748, '前进', '前进区', '中国,黑龙江省,佳木斯市,前进区', 3, 'qianjin', '0454', '154002', 'Q', '130.37497', '46.81401');
INSERT INTO `tb_region` VALUES (751, 748, '东风', '东风区', '中国,黑龙江省,佳木斯市,东风区', 3, 'dongfeng', '0454', '154005', 'D', '130.40366', '46.82257');
INSERT INTO `tb_region` VALUES (752, 748, '郊区', '郊区', '中国,黑龙江省,佳木斯市,郊区', 3, 'jiaoqu', '0454', '154004', 'J', '130.32731', '46.80958');
INSERT INTO `tb_region` VALUES (753, 748, '桦南', '桦南县', '中国,黑龙江省,佳木斯市,桦南县', 3, 'huanan', '0454', '154400', 'H', '130.55361', '46.23921');
INSERT INTO `tb_region` VALUES (754, 748, '桦川', '桦川县', '中国,黑龙江省,佳木斯市,桦川县', 3, 'huachuan', '0454', '154300', 'H', '130.71893', '47.02297');
INSERT INTO `tb_region` VALUES (755, 748, '汤原', '汤原县', '中国,黑龙江省,佳木斯市,汤原县', 3, 'tangyuan', '0454', '154700', 'T', '129.90966', '46.72755');
INSERT INTO `tb_region` VALUES (756, 748, '抚远', '抚远县', '中国,黑龙江省,佳木斯市,抚远县', 3, 'fuyuan', '0454', '156500', 'F', '134.29595', '48.36794');
INSERT INTO `tb_region` VALUES (757, 748, '同江', '同江市', '中国,黑龙江省,佳木斯市,同江市', 3, 'tongjiang', '0454', '156400', 'T', '132.51095', '47.64211');
INSERT INTO `tb_region` VALUES (758, 748, '富锦', '富锦市', '中国,黑龙江省,佳木斯市,富锦市', 3, 'fujin', '0454', '156100', 'F', '132.03707', '47.25132');
INSERT INTO `tb_region` VALUES (759, 655, '七台河', '七台河市', '中国,黑龙江省,七台河市', 2, 'qitaihe', '0464', '154600', 'Q', '131.015584', '45.771266');
INSERT INTO `tb_region` VALUES (760, 759, '新兴', '新兴区', '中国,黑龙江省,七台河市,新兴区', 3, 'xinxing', '0464', '154604', 'X', '130.93212', '45.81624');
INSERT INTO `tb_region` VALUES (761, 759, '桃山', '桃山区', '中国,黑龙江省,七台河市,桃山区', 3, 'taoshan', '0464', '154600', 'T', '131.01786', '45.76782');
INSERT INTO `tb_region` VALUES (762, 759, '茄子河', '茄子河区', '中国,黑龙江省,七台河市,茄子河区', 3, 'qiezihe', '0464', '154622', 'Q', '131.06807', '45.78519');
INSERT INTO `tb_region` VALUES (763, 759, '勃利', '勃利县', '中国,黑龙江省,七台河市,勃利县', 3, 'boli', '0464', '154500', 'B', '130.59179', '45.755');
INSERT INTO `tb_region` VALUES (764, 655, '牡丹江', '牡丹江市', '中国,黑龙江省,牡丹江市', 2, 'mudanjiang', '0453', '157000', 'M', '129.618602', '44.582962');
INSERT INTO `tb_region` VALUES (765, 764, '东安', '东安区', '中国,黑龙江省,牡丹江市,东安区', 3, 'dong\'an', '0453', '157000', 'D', '129.62665', '44.58133');
INSERT INTO `tb_region` VALUES (766, 764, '阳明', '阳明区', '中国,黑龙江省,牡丹江市,阳明区', 3, 'yangming', '0453', '157013', 'Y', '129.63547', '44.59603');
INSERT INTO `tb_region` VALUES (767, 764, '爱民', '爱民区', '中国,黑龙江省,牡丹江市,爱民区', 3, 'aimin', '0453', '157009', 'A', '129.59077', '44.59648');
INSERT INTO `tb_region` VALUES (768, 764, '西安', '西安区', '中国,黑龙江省,牡丹江市,西安区', 3, 'xi\'an', '0453', '157000', 'X', '129.61616', '44.57766');
INSERT INTO `tb_region` VALUES (769, 764, '东宁', '东宁县', '中国,黑龙江省,牡丹江市,东宁县', 3, 'dongning', '0453', '157200', 'D', '131.12793', '44.0661');
INSERT INTO `tb_region` VALUES (770, 764, '林口', '林口县', '中国,黑龙江省,牡丹江市,林口县', 3, 'linkou', '0453', '157600', 'L', '130.28393', '45.27809');
INSERT INTO `tb_region` VALUES (771, 764, '绥芬河', '绥芬河市', '中国,黑龙江省,牡丹江市,绥芬河市', 3, 'suifenhe', '0453', '157300', 'S', '131.15139', '44.41249');
INSERT INTO `tb_region` VALUES (772, 764, '海林', '海林市', '中国,黑龙江省,牡丹江市,海林市', 3, 'hailin', '0453', '157100', 'H', '129.38156', '44.59');
INSERT INTO `tb_region` VALUES (773, 764, '宁安', '宁安市', '中国,黑龙江省,牡丹江市,宁安市', 3, 'ning\'an', '0453', '157400', 'N', '129.48303', '44.34016');
INSERT INTO `tb_region` VALUES (774, 764, '穆棱', '穆棱市', '中国,黑龙江省,牡丹江市,穆棱市', 3, 'muling', '0453', '157500', 'M', '130.52465', '44.919');
INSERT INTO `tb_region` VALUES (775, 655, '黑河', '黑河市', '中国,黑龙江省,黑河市', 2, 'heihe', '0456', '164300', 'H', '127.499023', '50.249585');
INSERT INTO `tb_region` VALUES (776, 775, '爱辉', '爱辉区', '中国,黑龙江省,黑河市,爱辉区', 3, 'aihui', '0456', '164300', 'A', '127.50074', '50.25202');
INSERT INTO `tb_region` VALUES (777, 775, '嫩江', '嫩江县', '中国,黑龙江省,黑河市,嫩江县', 3, 'nenjiang', '0456', '161400', 'N', '125.22607', '49.17844');
INSERT INTO `tb_region` VALUES (778, 775, '逊克', '逊克县', '中国,黑龙江省,黑河市,逊克县', 3, 'xunke', '0456', '164400', 'X', '128.47882', '49.57983');
INSERT INTO `tb_region` VALUES (779, 775, '孙吴', '孙吴县', '中国,黑龙江省,黑河市,孙吴县', 3, 'sunwu', '0456', '164200', 'S', '127.33599', '49.42539');
INSERT INTO `tb_region` VALUES (780, 775, '北安', '北安市', '中国,黑龙江省,黑河市,北安市', 3, 'bei\'an', '0456', '164000', 'B', '126.48193', '48.23872');
INSERT INTO `tb_region` VALUES (781, 775, '五大连池', '五大连池市', '中国,黑龙江省,黑河市,五大连池市', 3, 'wudalianchi', '0456', '164100', 'W', '126.20294', '48.51507');
INSERT INTO `tb_region` VALUES (782, 655, '绥化', '绥化市', '中国,黑龙江省,绥化市', 2, 'suihua', '0455', '152000', 'S', '126.99293', '46.637393');
INSERT INTO `tb_region` VALUES (783, 782, '北林', '北林区', '中国,黑龙江省,绥化市,北林区', 3, 'beilin', '0455', '152000', 'B', '126.98564', '46.63735');
INSERT INTO `tb_region` VALUES (784, 782, '望奎', '望奎县', '中国,黑龙江省,绥化市,望奎县', 3, 'wangkui', '0455', '152100', 'W', '126.48187', '46.83079');
INSERT INTO `tb_region` VALUES (785, 782, '兰西', '兰西县', '中国,黑龙江省,绥化市,兰西县', 3, 'lanxi', '0455', '151500', 'L', '126.28994', '46.2525');
INSERT INTO `tb_region` VALUES (786, 782, '青冈', '青冈县', '中国,黑龙江省,绥化市,青冈县', 3, 'qinggang', '0455', '151600', 'Q', '126.11325', '46.68534');
INSERT INTO `tb_region` VALUES (787, 782, '庆安', '庆安县', '中国,黑龙江省,绥化市,庆安县', 3, 'qing\'an', '0455', '152400', 'Q', '127.50753', '46.88016');
INSERT INTO `tb_region` VALUES (788, 782, '明水', '明水县', '中国,黑龙江省,绥化市,明水县', 3, 'mingshui', '0455', '151700', 'M', '125.90594', '47.17327');
INSERT INTO `tb_region` VALUES (789, 782, '绥棱', '绥棱县', '中国,黑龙江省,绥化市,绥棱县', 3, 'suileng', '0455', '152200', 'S', '127.11584', '47.24267');
INSERT INTO `tb_region` VALUES (790, 782, '安达', '安达市', '中国,黑龙江省,绥化市,安达市', 3, 'anda', '0455', '151400', 'A', '125.34375', '46.4177');
INSERT INTO `tb_region` VALUES (791, 782, '肇东', '肇东市', '中国,黑龙江省,绥化市,肇东市', 3, 'zhaodong', '0455', '151100', 'Z', '125.96243', '46.05131');
INSERT INTO `tb_region` VALUES (792, 782, '海伦', '海伦市', '中国,黑龙江省,绥化市,海伦市', 3, 'hailun', '0455', '152300', 'H', '126.9682', '47.46093');
INSERT INTO `tb_region` VALUES (793, 655, '大兴安岭', '大兴安岭地区', '中国,黑龙江省,大兴安岭地区', 2, 'daxinganling', '0457', '165000', 'D', '124.711526', '52.335262');
INSERT INTO `tb_region` VALUES (794, 793, '加格达奇', '加格达奇区', '中国,黑龙江省,大兴安岭地区,加格达奇区', 3, 'jiagedaqi', '0457', '165000', 'J', '124.30954', '51.98144');
INSERT INTO `tb_region` VALUES (795, 793, '新林', '新林区', '中国,黑龙江省,大兴安岭地区,新林区', 3, 'xinlin', '0457', '165000', 'X', '124.397983', '51.67341');
INSERT INTO `tb_region` VALUES (796, 793, '松岭', '松岭区', '中国,黑龙江省,大兴安岭地区,松岭区', 3, 'songling', '0457', '165000', 'S', '124.189713', '51.985453');
INSERT INTO `tb_region` VALUES (797, 793, '呼中', '呼中区', '中国,黑龙江省,大兴安岭地区,呼中区', 3, 'huzhong', '0457', '165000', 'H', '123.60009', '52.03346');
INSERT INTO `tb_region` VALUES (798, 793, '呼玛', '呼玛县', '中国,黑龙江省,大兴安岭地区,呼玛县', 3, 'huma', '0457', '165100', 'H', '126.66174', '51.73112');
INSERT INTO `tb_region` VALUES (799, 793, '塔河', '塔河县', '中国,黑龙江省,大兴安岭地区,塔河县', 3, 'tahe', '0457', '165200', 'T', '124.70999', '52.33431');
INSERT INTO `tb_region` VALUES (800, 793, '漠河', '漠河县', '中国,黑龙江省,大兴安岭地区,漠河县', 3, 'mohe', '0457', '165300', 'M', '122.53759', '52.97003');
INSERT INTO `tb_region` VALUES (801, 0, '上海', '上海', '中国,上海', 1, 'shanghai', '', '', 'S', '121.472644', '31.231706');
INSERT INTO `tb_region` VALUES (802, 801, '上海', '上海市', '中国,上海,上海市', 2, 'shanghai', '021', '200000', 'S', '121.472644', '31.231706');
INSERT INTO `tb_region` VALUES (803, 802, '黄浦', '黄浦区', '中国,上海,上海市,黄浦区', 3, 'huangpu', '021', '200001', 'H', '121.49295', '31.22337');
INSERT INTO `tb_region` VALUES (804, 802, '徐汇', '徐汇区', '中国,上海,上海市,徐汇区', 3, 'xuhui', '021', '200030', 'X', '121.43676', '31.18831');
INSERT INTO `tb_region` VALUES (805, 802, '长宁', '长宁区', '中国,上海,上海市,长宁区', 3, 'changning', '021', '200050', 'C', '121.42462', '31.22036');
INSERT INTO `tb_region` VALUES (806, 802, '静安', '静安区', '中国,上海,上海市,静安区', 3, 'jing\'an', '021', '200040', 'J', '121.4444', '31.22884');
INSERT INTO `tb_region` VALUES (807, 802, '普陀', '普陀区', '中国,上海,上海市,普陀区', 3, 'putuo', '021', '200333', 'P', '121.39703', '31.24951');
INSERT INTO `tb_region` VALUES (808, 802, '闸北', '闸北区', '中国,上海,上海市,闸北区', 3, 'zhabei', '021', '200070', 'Z', '121.44636', '31.28075');
INSERT INTO `tb_region` VALUES (809, 802, '虹口', '虹口区', '中国,上海,上海市,虹口区', 3, 'hongkou', '021', '200086', 'H', '121.48162', '31.27788');
INSERT INTO `tb_region` VALUES (810, 802, '杨浦', '杨浦区', '中国,上海,上海市,杨浦区', 3, 'yangpu', '021', '200082', 'Y', '121.526', '31.2595');
INSERT INTO `tb_region` VALUES (811, 802, '闵行', '闵行区', '中国,上海,上海市,闵行区', 3, 'minhang', '021', '201100', 'M', '121.38162', '31.11246');
INSERT INTO `tb_region` VALUES (812, 802, '宝山', '宝山区', '中国,上海,上海市,宝山区', 3, 'baoshan', '021', '201900', 'B', '121.4891', '31.4045');
INSERT INTO `tb_region` VALUES (813, 802, '嘉定', '嘉定区', '中国,上海,上海市,嘉定区', 3, 'jiading', '021', '201800', 'J', '121.2655', '31.37473');
INSERT INTO `tb_region` VALUES (814, 802, '浦东', '浦东新区', '中国,上海,上海市,浦东新区', 3, 'pudong', '021', '200135', 'P', '121.5447', '31.22249');
INSERT INTO `tb_region` VALUES (815, 802, '金山', '金山区', '中国,上海,上海市,金山区', 3, 'jinshan', '021', '200540', 'J', '121.34164', '30.74163');
INSERT INTO `tb_region` VALUES (816, 802, '松江', '松江区', '中国,上海,上海市,松江区', 3, 'songjiang', '021', '201600', 'S', '121.22879', '31.03222');
INSERT INTO `tb_region` VALUES (817, 802, '青浦', '青浦区', '中国,上海,上海市,青浦区', 3, 'qingpu', '021', '201700', 'Q', '121.12417', '31.14974');
INSERT INTO `tb_region` VALUES (818, 802, '奉贤', '奉贤区', '中国,上海,上海市,奉贤区', 3, 'fengxian', '021', '201400', 'F', '121.47412', '30.9179');
INSERT INTO `tb_region` VALUES (819, 802, '崇明', '崇明县', '中国,上海,上海市,崇明县', 3, 'chongming', '021', '202150', 'C', '121.39758', '31.62278');
INSERT INTO `tb_region` VALUES (820, 0, '江苏', '江苏省', '中国,江苏省', 1, 'jiangsu', '', '', 'J', '118.767413', '32.041544');
INSERT INTO `tb_region` VALUES (821, 820, '南京', '南京市', '中国,江苏省,南京市', 2, 'nanjing', '025', '210008', 'N', '118.767413', '32.041544');
INSERT INTO `tb_region` VALUES (822, 821, '玄武', '玄武区', '中国,江苏省,南京市,玄武区', 3, 'xuanwu', '025', '210018', 'X', '118.79772', '32.04856');
INSERT INTO `tb_region` VALUES (823, 821, '秦淮', '秦淮区', '中国,江苏省,南京市,秦淮区', 3, 'qinhuai', '025', '210001', 'Q', '118.79815', '32.01112');
INSERT INTO `tb_region` VALUES (824, 821, '建邺', '建邺区', '中国,江苏省,南京市,建邺区', 3, 'jianye', '025', '210004', 'J', '118.76641', '32.03096');
INSERT INTO `tb_region` VALUES (825, 821, '鼓楼', '鼓楼区', '中国,江苏省,南京市,鼓楼区', 3, 'gulou', '025', '210009', 'G', '118.76974', '32.06632');
INSERT INTO `tb_region` VALUES (826, 821, '浦口', '浦口区', '中国,江苏省,南京市,浦口区', 3, 'pukou', '025', '211800', 'P', '118.62802', '32.05881');
INSERT INTO `tb_region` VALUES (827, 821, '栖霞', '栖霞区', '中国,江苏省,南京市,栖霞区', 3, 'qixia', '025', '210046', 'Q', '118.88064', '32.11352');
INSERT INTO `tb_region` VALUES (828, 821, '雨花台', '雨花台区', '中国,江苏省,南京市,雨花台区', 3, 'yuhuatai', '025', '210012', 'Y', '118.7799', '31.99202');
INSERT INTO `tb_region` VALUES (829, 821, '江宁', '江宁区', '中国,江苏省,南京市,江宁区', 3, 'jiangning', '025', '211100', 'J', '118.8399', '31.95263');
INSERT INTO `tb_region` VALUES (830, 821, '六合', '六合区', '中国,江苏省,南京市,六合区', 3, 'luhe', '025', '211500', 'L', '118.8413', '32.34222');
INSERT INTO `tb_region` VALUES (831, 821, '溧水', '溧水区', '中国,江苏省,南京市,溧水区', 3, 'lishui', '025', '211200', 'L', '119.028732', '31.653061');
INSERT INTO `tb_region` VALUES (832, 821, '高淳', '高淳区', '中国,江苏省,南京市,高淳区', 3, 'gaochun', '025', '211300', 'G', '118.87589', '31.327132');
INSERT INTO `tb_region` VALUES (833, 820, '无锡', '无锡市', '中国,江苏省,无锡市', 2, 'wuxi', '0510', '214000', 'W', '120.301663', '31.574729');
INSERT INTO `tb_region` VALUES (834, 833, '崇安', '崇安区', '中国,江苏省,无锡市,崇安区', 3, 'chong\'an', '0510', '214001', 'C', '120.29975', '31.58002');
INSERT INTO `tb_region` VALUES (835, 833, '南长', '南长区', '中国,江苏省,无锡市,南长区', 3, 'nanchang', '0510', '214021', 'N', '120.30873', '31.56359');
INSERT INTO `tb_region` VALUES (836, 833, '北塘', '北塘区', '中国,江苏省,无锡市,北塘区', 3, 'beitang', '0510', '214044', 'B', '120.29405', '31.60592');
INSERT INTO `tb_region` VALUES (837, 833, '锡山', '锡山区', '中国,江苏省,无锡市,锡山区', 3, 'xishan', '0510', '214101', 'X', '120.35699', '31.5886');
INSERT INTO `tb_region` VALUES (838, 833, '惠山', '惠山区', '中国,江苏省,无锡市,惠山区', 3, 'huishan', '0510', '214174', 'H', '120.29849', '31.68088');
INSERT INTO `tb_region` VALUES (839, 833, '滨湖', '滨湖区', '中国,江苏省,无锡市,滨湖区', 3, 'binhu', '0510', '214123', 'B', '120.29461', '31.52162');
INSERT INTO `tb_region` VALUES (840, 833, '江阴', '江阴市', '中国,江苏省,无锡市,江阴市', 3, 'jiangyin', '0510', '214431', 'J', '120.2853', '31.91996');
INSERT INTO `tb_region` VALUES (841, 833, '宜兴', '宜兴市', '中国,江苏省,无锡市,宜兴市', 3, 'yixing', '0510', '214200', 'Y', '119.82357', '31.33978');
INSERT INTO `tb_region` VALUES (842, 820, '徐州', '徐州市', '中国,江苏省,徐州市', 2, 'xuzhou', '0516', '221003', 'X', '117.184811', '34.261792');
INSERT INTO `tb_region` VALUES (843, 842, '鼓楼', '鼓楼区', '中国,江苏省,徐州市,鼓楼区', 3, 'gulou', '0516', '221005', 'G', '117.18559', '34.28851');
INSERT INTO `tb_region` VALUES (844, 842, '云龙', '云龙区', '中国,江苏省,徐州市,云龙区', 3, 'yunlong', '0516', '221007', 'Y', '117.23053', '34.24895');
INSERT INTO `tb_region` VALUES (845, 842, '贾汪', '贾汪区', '中国,江苏省,徐州市,贾汪区', 3, 'jiawang', '0516', '221003', 'J', '117.45346', '34.44264');
INSERT INTO `tb_region` VALUES (846, 842, '泉山', '泉山区', '中国,江苏省,徐州市,泉山区', 3, 'quanshan', '0516', '221006', 'Q', '117.19378', '34.24418');
INSERT INTO `tb_region` VALUES (847, 842, '铜山', '铜山区', '中国,江苏省,徐州市,铜山区', 3, 'tongshan', '0516', '221106', 'T', '117.183894', '34.19288');
INSERT INTO `tb_region` VALUES (848, 842, '丰县', '丰县', '中国,江苏省,徐州市,丰县', 3, 'fengxian', '0516', '221700', 'F', '116.59957', '34.69972');
INSERT INTO `tb_region` VALUES (849, 842, '沛县', '沛县', '中国,江苏省,徐州市,沛县', 3, 'peixian', '0516', '221600', 'P', '116.93743', '34.72163');
INSERT INTO `tb_region` VALUES (850, 842, '睢宁', '睢宁县', '中国,江苏省,徐州市,睢宁县', 3, 'suining', '0516', '221200', 'S', '117.94104', '33.91269');
INSERT INTO `tb_region` VALUES (851, 842, '新沂', '新沂市', '中国,江苏省,徐州市,新沂市', 3, 'xinyi', '0516', '221400', 'X', '118.35452', '34.36942');
INSERT INTO `tb_region` VALUES (852, 842, '邳州', '邳州市', '中国,江苏省,徐州市,邳州市', 3, 'pizhou', '0516', '221300', 'P', '117.95858', '34.33329');
INSERT INTO `tb_region` VALUES (853, 820, '常州', '常州市', '中国,江苏省,常州市', 2, 'changzhou', '0519', '213000', 'C', '119.946973', '31.772752');
INSERT INTO `tb_region` VALUES (854, 853, '天宁', '天宁区', '中国,江苏省,常州市,天宁区', 3, 'tianning', '0519', '213000', 'T', '119.95132', '31.75211');
INSERT INTO `tb_region` VALUES (855, 853, '钟楼', '钟楼区', '中国,江苏省,常州市,钟楼区', 3, 'zhonglou', '0519', '213023', 'Z', '119.90178', '31.80221');
INSERT INTO `tb_region` VALUES (856, 853, '戚墅堰', '戚墅堰区', '中国,江苏省,常州市,戚墅堰区', 3, 'qishuyan', '0519', '213025', 'Q', '120.06106', '31.71956');
INSERT INTO `tb_region` VALUES (857, 853, '新北', '新北区', '中国,江苏省,常州市,新北区', 3, 'xinbei', '0519', '213022', 'X', '119.97131', '31.83046');
INSERT INTO `tb_region` VALUES (858, 853, '武进', '武进区', '中国,江苏省,常州市,武进区', 3, 'wujin', '0519', '213100', 'W', '119.94244', '31.70086');
INSERT INTO `tb_region` VALUES (859, 853, '溧阳', '溧阳市', '中国,江苏省,常州市,溧阳市', 3, 'liyang', '0519', '213300', 'L', '119.4837', '31.41538');
INSERT INTO `tb_region` VALUES (860, 853, '金坛', '金坛市', '中国,江苏省,常州市,金坛市', 3, 'jintan', '0519', '213200', 'J', '119.57757', '31.74043');
INSERT INTO `tb_region` VALUES (861, 820, '苏州', '苏州市', '中国,江苏省,苏州市', 2, 'suzhou', '0512', '215002', 'S', '120.619585', '31.299379');
INSERT INTO `tb_region` VALUES (862, 861, '虎丘', '虎丘区', '中国,江苏省,苏州市,虎丘区', 3, 'huqiu', '0512', '215004', 'H', '120.57345', '31.2953');
INSERT INTO `tb_region` VALUES (863, 861, '吴中', '吴中区', '中国,江苏省,苏州市,吴中区', 3, 'wuzhong', '0512', '215128', 'W', '120.63211', '31.26226');
INSERT INTO `tb_region` VALUES (864, 861, '相城', '相城区', '中国,江苏省,苏州市,相城区', 3, 'xiangcheng', '0512', '215131', 'X', '120.64239', '31.36889');
INSERT INTO `tb_region` VALUES (865, 861, '姑苏', '姑苏区', '中国,江苏省,苏州市,姑苏区', 3, 'gusu', '0512', '215031', 'G', '120.619585', '31.299379');
INSERT INTO `tb_region` VALUES (866, 861, '吴江', '吴江区', '中国,江苏省,苏州市,吴江区', 3, 'wujiang', '0512', '215200', 'W', '120.638317', '31.159815');
INSERT INTO `tb_region` VALUES (867, 861, '常熟', '常熟市', '中国,江苏省,苏州市,常熟市', 3, 'changshu', '0512', '215500', 'C', '120.75225', '31.65374');
INSERT INTO `tb_region` VALUES (868, 861, '张家港', '张家港市', '中国,江苏省,苏州市,张家港市', 3, 'zhangjiagang', '0512', '215600', 'Z', '120.55538', '31.87532');
INSERT INTO `tb_region` VALUES (869, 861, '昆山', '昆山市', '中国,江苏省,苏州市,昆山市', 3, 'kunshan', '0512', '215300', 'K', '120.98074', '31.38464');
INSERT INTO `tb_region` VALUES (870, 861, '太仓', '太仓市', '中国,江苏省,苏州市,太仓市', 3, 'taicang', '0512', '215400', 'T', '121.10891', '31.4497');
INSERT INTO `tb_region` VALUES (871, 820, '南通', '南通市', '中国,江苏省,南通市', 2, 'nantong', '0513', '226001', 'N', '120.864608', '32.016212');
INSERT INTO `tb_region` VALUES (872, 871, '崇川', '崇川区', '中国,江苏省,南通市,崇川区', 3, 'chongchuan', '0513', '226001', 'C', '120.8573', '32.0098');
INSERT INTO `tb_region` VALUES (873, 871, '港闸', '港闸区', '中国,江苏省,南通市,港闸区', 3, 'gangzha', '0513', '226001', 'G', '120.81778', '32.03163');
INSERT INTO `tb_region` VALUES (874, 871, '通州', '通州区', '中国,江苏省,南通市,通州区', 3, 'tongzhou', '0513', '226300', 'T', '121.07293', '32.0676');
INSERT INTO `tb_region` VALUES (875, 871, '海安', '海安县', '中国,江苏省,南通市,海安县', 3, 'hai\'an', '0513', '226600', 'H', '120.45852', '32.54514');
INSERT INTO `tb_region` VALUES (876, 871, '如东', '如东县', '中国,江苏省,南通市,如东县', 3, 'rudong', '0513', '226400', 'R', '121.18942', '32.31439');
INSERT INTO `tb_region` VALUES (877, 871, '启东', '启东市', '中国,江苏省,南通市,启东市', 3, 'qidong', '0513', '226200', 'Q', '121.65985', '31.81083');
INSERT INTO `tb_region` VALUES (878, 871, '如皋', '如皋市', '中国,江苏省,南通市,如皋市', 3, 'rugao', '0513', '226500', 'R', '120.55969', '32.37597');
INSERT INTO `tb_region` VALUES (879, 871, '海门', '海门市', '中国,江苏省,南通市,海门市', 3, 'haimen', '0513', '226100', 'H', '121.16995', '31.89422');
INSERT INTO `tb_region` VALUES (880, 820, '连云港', '连云港市', '中国,江苏省,连云港市', 2, 'lianyungang', '0518', '222002', 'L', '119.178821', '34.600018');
INSERT INTO `tb_region` VALUES (881, 880, '连云', '连云区', '中国,江苏省,连云港市,连云区', 3, 'lianyun', '0518', '222042', 'L', '119.37304', '34.75293');
INSERT INTO `tb_region` VALUES (882, 880, '海州', '海州区', '中国,江苏省,连云港市,海州区', 3, 'haizhou', '0518', '222003', 'H', '119.13128', '34.56986');
INSERT INTO `tb_region` VALUES (883, 880, '赣榆', '赣榆区', '中国,江苏省,连云港市,赣榆区', 3, 'ganyu', '0518', '222100', 'G', '119.128774', '34.839154');
INSERT INTO `tb_region` VALUES (884, 880, '东海', '东海县', '中国,江苏省,连云港市,东海县', 3, 'donghai', '0518', '222300', 'D', '118.77145', '34.54215');
INSERT INTO `tb_region` VALUES (885, 880, '灌云', '灌云县', '中国,江苏省,连云港市,灌云县', 3, 'guanyun', '0518', '222200', 'G', '119.23925', '34.28391');
INSERT INTO `tb_region` VALUES (886, 880, '灌南', '灌南县', '中国,江苏省,连云港市,灌南县', 3, 'guannan', '0518', '222500', 'G', '119.35632', '34.09');
INSERT INTO `tb_region` VALUES (887, 820, '淮安', '淮安市', '中国,江苏省,淮安市', 2, 'huai\'an', '0517', '223001', 'H', '119.021265', '33.597506');
INSERT INTO `tb_region` VALUES (888, 887, '清河', '清河区', '中国,江苏省,淮安市,清河区', 3, 'qinghe', '0517', '223001', 'Q', '119.00778', '33.59949');
INSERT INTO `tb_region` VALUES (889, 887, '淮安', '淮安区', '中国,江苏省,淮安市,淮安区', 3, 'huai\'an', '0517', '223200', 'H', '119.021265', '33.597506');
INSERT INTO `tb_region` VALUES (890, 887, '淮阴', '淮阴区', '中国,江苏省,淮安市,淮阴区', 3, 'huaiyin', '0517', '223300', 'H', '119.03485', '33.63171');
INSERT INTO `tb_region` VALUES (891, 887, '清浦', '清浦区', '中国,江苏省,淮安市,清浦区', 3, 'qingpu', '0517', '223002', 'Q', '119.02648', '33.55232');
INSERT INTO `tb_region` VALUES (892, 887, '涟水', '涟水县', '中国,江苏省,淮安市,涟水县', 3, 'lianshui', '0517', '223400', 'L', '119.26083', '33.78094');
INSERT INTO `tb_region` VALUES (893, 887, '洪泽', '洪泽县', '中国,江苏省,淮安市,洪泽县', 3, 'hongze', '0517', '223100', 'H', '118.87344', '33.29429');
INSERT INTO `tb_region` VALUES (894, 887, '盱眙', '盱眙县', '中国,江苏省,淮安市,盱眙县', 3, 'xuyi', '0517', '211700', 'X', '118.54495', '33.01086');
INSERT INTO `tb_region` VALUES (895, 887, '金湖', '金湖县', '中国,江苏省,淮安市,金湖县', 3, 'jinhu', '0517', '211600', 'J', '119.02307', '33.02219');
INSERT INTO `tb_region` VALUES (896, 820, '盐城', '盐城市', '中国,江苏省,盐城市', 2, 'yancheng', '0515', '224005', 'Y', '120.139998', '33.377631');
INSERT INTO `tb_region` VALUES (897, 896, '亭湖', '亭湖区', '中国,江苏省,盐城市,亭湖区', 3, 'tinghu', '0515', '224005', 'T', '120.16583', '33.37825');
INSERT INTO `tb_region` VALUES (898, 896, '盐都', '盐都区', '中国,江苏省,盐城市,盐都区', 3, 'yandu', '0515', '224055', 'Y', '120.15441', '33.3373');
INSERT INTO `tb_region` VALUES (899, 896, '响水', '响水县', '中国,江苏省,盐城市,响水县', 3, 'xiangshui', '0515', '224600', 'X', '119.56985', '34.20513');
INSERT INTO `tb_region` VALUES (900, 896, '滨海', '滨海县', '中国,江苏省,盐城市,滨海县', 3, 'binhai', '0515', '224500', 'B', '119.82058', '33.98972');
INSERT INTO `tb_region` VALUES (901, 896, '阜宁', '阜宁县', '中国,江苏省,盐城市,阜宁县', 3, 'funing', '0515', '224400', 'F', '119.80175', '33.78228');
INSERT INTO `tb_region` VALUES (902, 896, '射阳', '射阳县', '中国,江苏省,盐城市,射阳县', 3, 'sheyang', '0515', '224300', 'S', '120.26043', '33.77636');
INSERT INTO `tb_region` VALUES (903, 896, '建湖', '建湖县', '中国,江苏省,盐城市,建湖县', 3, 'jianhu', '0515', '224700', 'J', '119.79852', '33.47241');
INSERT INTO `tb_region` VALUES (904, 896, '东台', '东台市', '中国,江苏省,盐城市,东台市', 3, 'dongtai', '0515', '224200', 'D', '120.32376', '32.85078');
INSERT INTO `tb_region` VALUES (905, 896, '大丰', '大丰市', '中国,江苏省,盐城市,大丰市', 3, 'dafeng', '0515', '224100', 'D', '120.46594', '33.19893');
INSERT INTO `tb_region` VALUES (906, 820, '扬州', '扬州市', '中国,江苏省,扬州市', 2, 'yangzhou', '0514', '225002', 'Y', '119.421003', '32.393159');
INSERT INTO `tb_region` VALUES (907, 906, '广陵', '广陵区', '中国,江苏省,扬州市,广陵区', 3, 'guangling', '0514', '225002', 'G', '119.43186', '32.39472');
INSERT INTO `tb_region` VALUES (908, 906, '邗江', '邗江区', '中国,江苏省,扬州市,邗江区', 3, 'hanjiang', '0514', '225002', 'H', '119.39816', '32.3765');
INSERT INTO `tb_region` VALUES (909, 906, '江都', '江都区', '中国,江苏省,扬州市,江都区', 3, 'jiangdu', '0514', '225200', 'J', '119.567481', '32.426564');
INSERT INTO `tb_region` VALUES (910, 906, '宝应', '宝应县', '中国,江苏省,扬州市,宝应县', 3, 'baoying', '0514', '225800', 'B', '119.31213', '33.23549');
INSERT INTO `tb_region` VALUES (911, 906, '仪征', '仪征市', '中国,江苏省,扬州市,仪征市', 3, 'yizheng', '0514', '211400', 'Y', '119.18432', '32.27197');
INSERT INTO `tb_region` VALUES (912, 906, '高邮', '高邮市', '中国,江苏省,扬州市,高邮市', 3, 'gaoyou', '0514', '225600', 'G', '119.45965', '32.78135');
INSERT INTO `tb_region` VALUES (913, 820, '镇江', '镇江市', '中国,江苏省,镇江市', 2, 'zhenjiang', '0511', '212004', 'Z', '119.452753', '32.204402');
INSERT INTO `tb_region` VALUES (914, 913, '京口', '京口区', '中国,江苏省,镇江市,京口区', 3, 'jingkou', '0511', '212003', 'J', '119.46947', '32.19809');
INSERT INTO `tb_region` VALUES (915, 913, '润州', '润州区', '中国,江苏省,镇江市,润州区', 3, 'runzhou', '0511', '212005', 'R', '119.41134', '32.19523');
INSERT INTO `tb_region` VALUES (916, 913, '丹徒', '丹徒区', '中国,江苏省,镇江市,丹徒区', 3, 'dantu', '0511', '212028', 'D', '119.43383', '32.13183');
INSERT INTO `tb_region` VALUES (917, 913, '丹阳', '丹阳市', '中国,江苏省,镇江市,丹阳市', 3, 'danyang', '0511', '212300', 'D', '119.57525', '31.99121');
INSERT INTO `tb_region` VALUES (918, 913, '扬中', '扬中市', '中国,江苏省,镇江市,扬中市', 3, 'yangzhong', '0511', '212200', 'Y', '119.79718', '32.2363');
INSERT INTO `tb_region` VALUES (919, 913, '句容', '句容市', '中国,江苏省,镇江市,句容市', 3, 'jurong', '0511', '212400', 'J', '119.16482', '31.95591');
INSERT INTO `tb_region` VALUES (920, 820, '泰州', '泰州市', '中国,江苏省,泰州市', 2, 'taizhou', '0523', '225300', 'T', '119.915176', '32.484882');
INSERT INTO `tb_region` VALUES (921, 920, '海陵', '海陵区', '中国,江苏省,泰州市,海陵区', 3, 'hailing', '0523', '225300', 'H', '119.91942', '32.49101');
INSERT INTO `tb_region` VALUES (922, 920, '高港', '高港区', '中国,江苏省,泰州市,高港区', 3, 'gaogang', '0523', '225321', 'G', '119.88089', '32.31833');
INSERT INTO `tb_region` VALUES (923, 920, '姜堰', '姜堰区', '中国,江苏省,泰州市,姜堰区', 3, 'jiangyan', '0523', '225500', 'J', '120.148208', '32.508483');
INSERT INTO `tb_region` VALUES (924, 920, '兴化', '兴化市', '中国,江苏省,泰州市,兴化市', 3, 'xinghua', '0523', '225700', 'X', '119.85238', '32.90944');
INSERT INTO `tb_region` VALUES (925, 920, '靖江', '靖江市', '中国,江苏省,泰州市,靖江市', 3, 'jingjiang', '0523', '214500', 'J', '120.27291', '32.01595');
INSERT INTO `tb_region` VALUES (926, 920, '泰兴', '泰兴市', '中国,江苏省,泰州市,泰兴市', 3, 'taixing', '0523', '225400', 'T', '120.05194', '32.17187');
INSERT INTO `tb_region` VALUES (927, 820, '宿迁', '宿迁市', '中国,江苏省,宿迁市', 2, 'suqian', '0527', '223800', 'S', '118.293328', '33.945154');
INSERT INTO `tb_region` VALUES (928, 927, '宿城', '宿城区', '中国,江苏省,宿迁市,宿城区', 3, 'sucheng', '0527', '223800', 'S', '118.29141', '33.94219');
INSERT INTO `tb_region` VALUES (929, 927, '宿豫', '宿豫区', '中国,江苏省,宿迁市,宿豫区', 3, 'suyu', '0527', '223800', 'S', '118.32922', '33.94673');
INSERT INTO `tb_region` VALUES (930, 927, '沭阳', '沭阳县', '中国,江苏省,宿迁市,沭阳县', 3, 'shuyang', '0527', '223600', 'S', '118.76873', '34.11446');
INSERT INTO `tb_region` VALUES (931, 927, '泗阳', '泗阳县', '中国,江苏省,宿迁市,泗阳县', 3, 'siyang', '0527', '223700', 'S', '118.7033', '33.72096');
INSERT INTO `tb_region` VALUES (932, 927, '泗洪', '泗洪县', '中国,江苏省,宿迁市,泗洪县', 3, 'sihong', '0527', '223900', 'S', '118.21716', '33.45996');
INSERT INTO `tb_region` VALUES (933, 0, '浙江', '浙江省', '中国,浙江省', 1, 'zhejiang', '', '', 'Z', '120.153576', '30.287459');
INSERT INTO `tb_region` VALUES (934, 933, '杭州', '杭州市', '中国,浙江省,杭州市', 2, 'hangzhou', '0571', '310026', 'H', '120.153576', '30.287459');
INSERT INTO `tb_region` VALUES (935, 934, '上城', '上城区', '中国,浙江省,杭州市,上城区', 3, 'shangcheng', '0571', '310002', 'S', '120.16922', '30.24255');
INSERT INTO `tb_region` VALUES (936, 934, '下城', '下城区', '中国,浙江省,杭州市,下城区', 3, 'xiacheng', '0571', '310006', 'X', '120.18096', '30.28153');
INSERT INTO `tb_region` VALUES (937, 934, '江干', '江干区', '中国,浙江省,杭州市,江干区', 3, 'jianggan', '0571', '310016', 'J', '120.20517', '30.2572');
INSERT INTO `tb_region` VALUES (938, 934, '拱墅', '拱墅区', '中国,浙江省,杭州市,拱墅区', 3, 'gongshu', '0571', '310011', 'G', '120.14209', '30.31968');
INSERT INTO `tb_region` VALUES (939, 934, '西湖', '西湖区', '中国,浙江省,杭州市,西湖区', 3, 'xihu', '0571', '310013', 'X', '120.12979', '30.25949');
INSERT INTO `tb_region` VALUES (940, 934, '滨江', '滨江区', '中国,浙江省,杭州市,滨江区', 3, 'binjiang', '0571', '310051', 'B', '120.21194', '30.20835');
INSERT INTO `tb_region` VALUES (941, 934, '萧山', '萧山区', '中国,浙江省,杭州市,萧山区', 3, 'xiaoshan', '0571', '311200', 'X', '120.26452', '30.18505');
INSERT INTO `tb_region` VALUES (942, 934, '余杭', '余杭区', '中国,浙江省,杭州市,余杭区', 3, 'yuhang', '0571', '311100', 'Y', '120.29986', '30.41829');
INSERT INTO `tb_region` VALUES (943, 934, '桐庐', '桐庐县', '中国,浙江省,杭州市,桐庐县', 3, 'tonglu', '0571', '311500', 'T', '119.68853', '29.79779');
INSERT INTO `tb_region` VALUES (944, 934, '淳安', '淳安县', '中国,浙江省,杭州市,淳安县', 3, 'chun\'an', '0571', '311700', 'C', '119.04257', '29.60988');
INSERT INTO `tb_region` VALUES (945, 934, '建德', '建德市', '中国,浙江省,杭州市,建德市', 3, 'jiande', '0571', '311600', 'J', '119.28158', '29.47603');
INSERT INTO `tb_region` VALUES (946, 934, '富阳', '富阳区', '中国,浙江省,杭州市,富阳区', 3, 'fuyang', '0571', '311400', 'F', '119.96041', '30.04878');
INSERT INTO `tb_region` VALUES (947, 934, '临安', '临安市', '中国,浙江省,杭州市,临安市', 3, 'lin\'an', '0571', '311300', 'L', '119.72473', '30.23447');
INSERT INTO `tb_region` VALUES (948, 933, '宁波', '宁波市', '中国,浙江省,宁波市', 2, 'ningbo', '0574', '315000', 'N', '121.549792', '29.868388');
INSERT INTO `tb_region` VALUES (949, 948, '海曙', '海曙区', '中国,浙江省,宁波市,海曙区', 3, 'haishu', '0574', '315000', 'H', '121.55106', '29.85977');
INSERT INTO `tb_region` VALUES (950, 948, '江东', '江东区', '中国,浙江省,宁波市,江东区', 3, 'jiangdong', '0574', '315040', 'J', '121.57028', '29.86701');
INSERT INTO `tb_region` VALUES (951, 948, '江北', '江北区', '中国,浙江省,宁波市,江北区', 3, 'jiangbei', '0574', '315020', 'J', '121.55681', '29.88776');
INSERT INTO `tb_region` VALUES (952, 948, '北仑', '北仑区', '中国,浙江省,宁波市,北仑区', 3, 'beilun', '0574', '315800', 'B', '121.84408', '29.90069');
INSERT INTO `tb_region` VALUES (953, 948, '镇海', '镇海区', '中国,浙江省,宁波市,镇海区', 3, 'zhenhai', '0574', '315200', 'Z', '121.71615', '29.94893');
INSERT INTO `tb_region` VALUES (954, 948, '鄞州', '鄞州区', '中国,浙江省,宁波市,鄞州区', 3, 'yinzhou', '0574', '315100', 'Y', '121.54754', '29.81614');
INSERT INTO `tb_region` VALUES (955, 948, '象山', '象山县', '中国,浙江省,宁波市,象山县', 3, 'xiangshan', '0574', '315700', 'X', '121.86917', '29.47758');
INSERT INTO `tb_region` VALUES (956, 948, '宁海', '宁海县', '中国,浙江省,宁波市,宁海县', 3, 'ninghai', '0574', '315600', 'N', '121.43072', '29.2889');
INSERT INTO `tb_region` VALUES (957, 948, '余姚', '余姚市', '中国,浙江省,宁波市,余姚市', 3, 'yuyao', '0574', '315400', 'Y', '121.15341', '30.03867');
INSERT INTO `tb_region` VALUES (958, 948, '慈溪', '慈溪市', '中国,浙江省,宁波市,慈溪市', 3, 'cixi', '0574', '315300', 'C', '121.26641', '30.16959');
INSERT INTO `tb_region` VALUES (959, 948, '奉化', '奉化市', '中国,浙江省,宁波市,奉化市', 3, 'fenghua', '0574', '315500', 'F', '121.41003', '29.65537');
INSERT INTO `tb_region` VALUES (960, 933, '温州', '温州市', '中国,浙江省,温州市', 2, 'wenzhou', '0577', '325000', 'W', '120.672111', '28.000575');
INSERT INTO `tb_region` VALUES (961, 960, '鹿城', '鹿城区', '中国,浙江省,温州市,鹿城区', 3, 'lucheng', '0577', '325000', 'L', '120.65505', '28.01489');
INSERT INTO `tb_region` VALUES (962, 960, '龙湾', '龙湾区', '中国,浙江省,温州市,龙湾区', 3, 'longwan', '0577', '325013', 'L', '120.83053', '27.91284');
INSERT INTO `tb_region` VALUES (963, 960, '瓯海', '瓯海区', '中国,浙江省,温州市,瓯海区', 3, 'ouhai', '0577', '325005', 'O', '120.63751', '28.00714');
INSERT INTO `tb_region` VALUES (964, 960, '洞头', '洞头县', '中国,浙江省,温州市,洞头县', 3, 'dongtou', '0577', '325700', 'D', '121.15606', '27.83634');
INSERT INTO `tb_region` VALUES (965, 960, '永嘉', '永嘉县', '中国,浙江省,温州市,永嘉县', 3, 'yongjia', '0577', '325100', 'Y', '120.69317', '28.15456');
INSERT INTO `tb_region` VALUES (966, 960, '平阳', '平阳县', '中国,浙江省,温州市,平阳县', 3, 'pingyang', '0577', '325400', 'P', '120.56506', '27.66245');
INSERT INTO `tb_region` VALUES (967, 960, '苍南', '苍南县', '中国,浙江省,温州市,苍南县', 3, 'cangnan', '0577', '325800', 'C', '120.42608', '27.51739');
INSERT INTO `tb_region` VALUES (968, 960, '文成', '文成县', '中国,浙江省,温州市,文成县', 3, 'wencheng', '0577', '325300', 'W', '120.09063', '27.78678');
INSERT INTO `tb_region` VALUES (969, 960, '泰顺', '泰顺县', '中国,浙江省,温州市,泰顺县', 3, 'taishun', '0577', '325500', 'T', '119.7182', '27.55694');
INSERT INTO `tb_region` VALUES (970, 960, '瑞安', '瑞安市', '中国,浙江省,温州市,瑞安市', 3, 'rui\'an', '0577', '325200', 'R', '120.65466', '27.78041');
INSERT INTO `tb_region` VALUES (971, 960, '乐清', '乐清市', '中国,浙江省,温州市,乐清市', 3, 'yueqing', '0577', '325600', 'L', '120.9617', '28.12404');
INSERT INTO `tb_region` VALUES (972, 933, '嘉兴', '嘉兴市', '中国,浙江省,嘉兴市', 2, 'jiaxing', '0573', '314000', 'J', '120.750865', '30.762653');
INSERT INTO `tb_region` VALUES (973, 972, '南湖', '南湖区', '中国,浙江省,嘉兴市,南湖区', 3, 'nanhu', '0573', '314051', 'N', '120.78524', '30.74865');
INSERT INTO `tb_region` VALUES (974, 972, '秀洲', '秀洲区', '中国,浙江省,嘉兴市,秀洲区', 3, 'xiuzhou', '0573', '314031', 'X', '120.70867', '30.76454');
INSERT INTO `tb_region` VALUES (975, 972, '嘉善', '嘉善县', '中国,浙江省,嘉兴市,嘉善县', 3, 'jiashan', '0573', '314100', 'J', '120.92559', '30.82993');
INSERT INTO `tb_region` VALUES (976, 972, '海盐', '海盐县', '中国,浙江省,嘉兴市,海盐县', 3, 'haiyan', '0573', '314300', 'H', '120.9457', '30.52547');
INSERT INTO `tb_region` VALUES (977, 972, '海宁', '海宁市', '中国,浙江省,嘉兴市,海宁市', 3, 'haining', '0573', '314400', 'H', '120.6813', '30.5097');
INSERT INTO `tb_region` VALUES (978, 972, '平湖', '平湖市', '中国,浙江省,嘉兴市,平湖市', 3, 'pinghu', '0573', '314200', 'P', '121.02166', '30.69618');
INSERT INTO `tb_region` VALUES (979, 972, '桐乡', '桐乡市', '中国,浙江省,嘉兴市,桐乡市', 3, 'tongxiang', '0573', '314500', 'T', '120.56485', '30.6302');
INSERT INTO `tb_region` VALUES (980, 933, '湖州', '湖州市', '中国,浙江省,湖州市', 2, 'huzhou', '0572', '313000', 'H', '120.102398', '30.867198');
INSERT INTO `tb_region` VALUES (981, 980, '吴兴', '吴兴区', '中国,浙江省,湖州市,吴兴区', 3, 'wuxing', '0572', '313000', 'W', '120.12548', '30.85752');
INSERT INTO `tb_region` VALUES (982, 980, '南浔', '南浔区', '中国,浙江省,湖州市,南浔区', 3, 'nanxun', '0572', '313009', 'N', '120.42038', '30.86686');
INSERT INTO `tb_region` VALUES (983, 980, '德清', '德清县', '中国,浙江省,湖州市,德清县', 3, 'deqing', '0572', '313200', 'D', '119.97836', '30.53369');
INSERT INTO `tb_region` VALUES (984, 980, '长兴', '长兴县', '中国,浙江省,湖州市,长兴县', 3, 'changxing', '0572', '313100', 'C', '119.90783', '31.00606');
INSERT INTO `tb_region` VALUES (985, 980, '安吉', '安吉县', '中国,浙江省,湖州市,安吉县', 3, 'anji', '0572', '313300', 'A', '119.68158', '30.63798');
INSERT INTO `tb_region` VALUES (986, 933, '绍兴', '绍兴市', '中国,浙江省,绍兴市', 2, 'shaoxing', '0575', '312000', 'S', '120.582112', '29.997117');
INSERT INTO `tb_region` VALUES (987, 986, '越城', '越城区', '中国,浙江省,绍兴市,越城区', 3, 'yuecheng', '0575', '312000', 'Y', '120.5819', '29.98895');
INSERT INTO `tb_region` VALUES (988, 986, '柯桥', '柯桥区', '中国,浙江省,绍兴市,柯桥区', 3, 'keqiao', '0575', '312030', 'K', '120.492736', '30.08763');
INSERT INTO `tb_region` VALUES (989, 986, '上虞', '上虞区', '中国,浙江省,绍兴市,上虞区', 3, 'shangyu', '0575', '312300', 'S', '120.476075', '30.078038');
INSERT INTO `tb_region` VALUES (990, 986, '新昌', '新昌县', '中国,浙江省,绍兴市,新昌县', 3, 'xinchang', '0575', '312500', 'X', '120.90435', '29.49991');
INSERT INTO `tb_region` VALUES (991, 986, '诸暨', '诸暨市', '中国,浙江省,绍兴市,诸暨市', 3, 'zhuji', '0575', '311800', 'Z', '120.23629', '29.71358');
INSERT INTO `tb_region` VALUES (992, 986, '嵊州', '嵊州市', '中国,浙江省,绍兴市,嵊州市', 3, 'shengzhou', '0575', '312400', 'S', '120.82174', '29.58854');
INSERT INTO `tb_region` VALUES (993, 933, '金华', '金华市', '中国,浙江省,金华市', 2, 'jinhua', '0579', '321000', 'J', '119.649506', '29.089524');
INSERT INTO `tb_region` VALUES (994, 993, '婺城', '婺城区', '中国,浙江省,金华市,婺城区', 3, 'wucheng', '0579', '321000', 'W', '119.57135', '29.09521');
INSERT INTO `tb_region` VALUES (995, 993, '金东', '金东区', '中国,浙江省,金华市,金东区', 3, 'jindong', '0579', '321000', 'J', '119.69302', '29.0991');
INSERT INTO `tb_region` VALUES (996, 993, '武义', '武义县', '中国,浙江省,金华市,武义县', 3, 'wuyi', '0579', '321200', 'W', '119.8164', '28.89331');
INSERT INTO `tb_region` VALUES (997, 993, '浦江', '浦江县', '中国,浙江省,金华市,浦江县', 3, 'pujiang', '0579', '322200', 'P', '119.89181', '29.45353');
INSERT INTO `tb_region` VALUES (998, 993, '磐安', '磐安县', '中国,浙江省,金华市,磐安县', 3, 'pan\'an', '0579', '322300', 'P', '120.45022', '29.05733');
INSERT INTO `tb_region` VALUES (999, 993, '兰溪', '兰溪市', '中国,浙江省,金华市,兰溪市', 3, 'lanxi', '0579', '321100', 'L', '119.45965', '29.20841');
INSERT INTO `tb_region` VALUES (1000, 993, '义乌', '义乌市', '中国,浙江省,金华市,义乌市', 3, 'yiwu', '0579', '322000', 'Y', '120.0744', '29.30558');
INSERT INTO `tb_region` VALUES (1001, 993, '东阳', '东阳市', '中国,浙江省,金华市,东阳市', 3, 'dongyang', '0579', '322100', 'D', '120.24185', '29.28942');
INSERT INTO `tb_region` VALUES (1002, 993, '永康', '永康市', '中国,浙江省,金华市,永康市', 3, 'yongkang', '0579', '321300', 'Y', '120.04727', '28.88844');
INSERT INTO `tb_region` VALUES (1003, 933, '衢州', '衢州市', '中国,浙江省,衢州市', 2, 'quzhou', '0570', '324002', 'Q', '118.87263', '28.941708');
INSERT INTO `tb_region` VALUES (1004, 1003, '柯城', '柯城区', '中国,浙江省,衢州市,柯城区', 3, 'kecheng', '0570', '324100', 'K', '118.87109', '28.96858');
INSERT INTO `tb_region` VALUES (1005, 1003, '衢江', '衢江区', '中国,浙江省,衢州市,衢江区', 3, 'qujiang', '0570', '324022', 'Q', '118.9598', '28.97977');
INSERT INTO `tb_region` VALUES (1006, 1003, '常山', '常山县', '中国,浙江省,衢州市,常山县', 3, 'changshan', '0570', '324200', 'C', '118.51025', '28.90191');
INSERT INTO `tb_region` VALUES (1007, 1003, '开化', '开化县', '中国,浙江省,衢州市,开化县', 3, 'kaihua', '0570', '324300', 'K', '118.41616', '29.13785');
INSERT INTO `tb_region` VALUES (1008, 1003, '龙游', '龙游县', '中国,浙江省,衢州市,龙游县', 3, 'longyou', '0570', '324400', 'L', '119.17221', '29.02823');
INSERT INTO `tb_region` VALUES (1009, 1003, '江山', '江山市', '中国,浙江省,衢州市,江山市', 3, 'jiangshan', '0570', '324100', 'J', '118.62674', '28.7386');
INSERT INTO `tb_region` VALUES (1010, 933, '舟山', '舟山市', '中国,浙江省,舟山市', 2, 'zhoushan', '0580', '316000', 'Z', '122.106863', '30.016028');
INSERT INTO `tb_region` VALUES (1011, 1010, '定海', '定海区', '中国,浙江省,舟山市,定海区', 3, 'dinghai', '0580', '316000', 'D', '122.10677', '30.01985');
INSERT INTO `tb_region` VALUES (1012, 1010, '普陀', '普陀区', '中国,浙江省,舟山市,普陀区', 3, 'putuo', '0580', '316100', 'P', '122.30278', '29.94908');
INSERT INTO `tb_region` VALUES (1013, 1010, '岱山', '岱山县', '中国,浙江省,舟山市,岱山县', 3, 'daishan', '0580', '316200', 'D', '122.20486', '30.24385');
INSERT INTO `tb_region` VALUES (1014, 1010, '嵊泗', '嵊泗县', '中国,浙江省,舟山市,嵊泗县', 3, 'shengsi', '0580', '202450', 'S', '122.45129', '30.72678');
INSERT INTO `tb_region` VALUES (1015, 933, '台州', '台州市', '中国,浙江省,台州市', 2, 'taizhou', '0576', '318000', 'T', '121.428599', '28.661378');
INSERT INTO `tb_region` VALUES (1016, 1015, '椒江', '椒江区', '中国,浙江省,台州市,椒江区', 3, 'jiaojiang', '0576', '318000', 'J', '121.44287', '28.67301');
INSERT INTO `tb_region` VALUES (1017, 1015, '黄岩', '黄岩区', '中国,浙江省,台州市,黄岩区', 3, 'huangyan', '0576', '318020', 'H', '121.25891', '28.65077');
INSERT INTO `tb_region` VALUES (1018, 1015, '路桥', '路桥区', '中国,浙江省,台州市,路桥区', 3, 'luqiao', '0576', '318050', 'L', '121.37381', '28.58016');
INSERT INTO `tb_region` VALUES (1019, 1015, '玉环', '玉环县', '中国,浙江省,台州市,玉环县', 3, 'yuhuan', '0576', '317600', 'Y', '121.23242', '28.13637');
INSERT INTO `tb_region` VALUES (1020, 1015, '三门', '三门县', '中国,浙江省,台州市,三门县', 3, 'sanmen', '0576', '317100', 'S', '121.3937', '29.1051');
INSERT INTO `tb_region` VALUES (1021, 1015, '天台', '天台县', '中国,浙江省,台州市,天台县', 3, 'tiantai', '0576', '317200', 'T', '121.00848', '29.1429');
INSERT INTO `tb_region` VALUES (1022, 1015, '仙居', '仙居县', '中国,浙江省,台州市,仙居县', 3, 'xianju', '0576', '317300', 'X', '120.72872', '28.84672');
INSERT INTO `tb_region` VALUES (1023, 1015, '温岭', '温岭市', '中国,浙江省,台州市,温岭市', 3, 'wenling', '0576', '317500', 'W', '121.38595', '28.37176');
INSERT INTO `tb_region` VALUES (1024, 1015, '临海', '临海市', '中国,浙江省,台州市,临海市', 3, 'linhai', '0576', '317000', 'L', '121.13885', '28.85603');
INSERT INTO `tb_region` VALUES (1025, 933, '丽水', '丽水市', '中国,浙江省,丽水市', 2, 'lishui', '0578', '323000', 'L', '119.921786', '28.451993');
INSERT INTO `tb_region` VALUES (1026, 1025, '莲都', '莲都区', '中国,浙江省,丽水市,莲都区', 3, 'liandu', '0578', '323000', 'L', '119.9127', '28.44583');
INSERT INTO `tb_region` VALUES (1027, 1025, '青田', '青田县', '中国,浙江省,丽水市,青田县', 3, 'qingtian', '0578', '323900', 'Q', '120.29028', '28.13897');
INSERT INTO `tb_region` VALUES (1028, 1025, '缙云', '缙云县', '中国,浙江省,丽水市,缙云县', 3, 'jinyun', '0578', '321400', 'J', '120.09036', '28.65944');
INSERT INTO `tb_region` VALUES (1029, 1025, '遂昌', '遂昌县', '中国,浙江省,丽水市,遂昌县', 3, 'suichang', '0578', '323300', 'S', '119.27606', '28.59291');
INSERT INTO `tb_region` VALUES (1030, 1025, '松阳', '松阳县', '中国,浙江省,丽水市,松阳县', 3, 'songyang', '0578', '323400', 'S', '119.48199', '28.4494');
INSERT INTO `tb_region` VALUES (1031, 1025, '云和', '云和县', '中国,浙江省,丽水市,云和县', 3, 'yunhe', '0578', '323600', 'Y', '119.57287', '28.11643');
INSERT INTO `tb_region` VALUES (1032, 1025, '庆元', '庆元县', '中国,浙江省,丽水市,庆元县', 3, 'qingyuan', '0578', '323800', 'Q', '119.06256', '27.61842');
INSERT INTO `tb_region` VALUES (1033, 1025, '景宁', '景宁畲族自治县', '中国,浙江省,丽水市,景宁畲族自治县', 3, 'jingning', '0578', '323500', 'J', '119.63839', '27.97393');
INSERT INTO `tb_region` VALUES (1034, 1025, '龙泉', '龙泉市', '中国,浙江省,丽水市,龙泉市', 3, 'longquan', '0578', '323700', 'L', '119.14163', '28.0743');
INSERT INTO `tb_region` VALUES (1035, 933, '舟山新区', '舟山群岛新区', '中国,浙江省,舟山群岛新区', 2, 'zhoushan', '0580', '316000', 'Z', '122.317657', '29.813242');
INSERT INTO `tb_region` VALUES (1036, 1035, '金塘', '金塘岛', '中国,浙江省,舟山群岛新区,金塘岛', 3, 'jintang', '0580', '316000', 'J', '121.893373', '30.040641');
INSERT INTO `tb_region` VALUES (1037, 1035, '六横', '六横岛', '中国,浙江省,舟山群岛新区,六横岛', 3, 'liuheng', '0580', '316000', 'L', '122.14265', '29.662938');
INSERT INTO `tb_region` VALUES (1038, 1035, '衢山', '衢山岛', '中国,浙江省,舟山群岛新区,衢山岛', 3, 'qushan', '0580', '316000', 'Q', '122.358425', '30.442642');
INSERT INTO `tb_region` VALUES (1039, 1035, '舟山', '舟山本岛西北部', '中国,浙江省,舟山群岛新区,舟山本岛西北部', 3, 'zhoushan', '0580', '316000', 'Z', '122.03064', '30.140377');
INSERT INTO `tb_region` VALUES (1040, 1035, '岱山', '岱山岛西南部', '中国,浙江省,舟山群岛新区,岱山岛西南部', 3, 'daishan', '0580', '316000', 'D', '122.180123', '30.277269');
INSERT INTO `tb_region` VALUES (1041, 1035, '泗礁', '泗礁岛', '中国,浙江省,舟山群岛新区,泗礁岛', 3, 'sijiao', '0580', '316000', 'S', '122.45803', '30.725112');
INSERT INTO `tb_region` VALUES (1042, 1035, '朱家尖', '朱家尖岛', '中国,浙江省,舟山群岛新区,朱家尖岛', 3, 'zhujiajian', '0580', '316000', 'Z', '122.390636', '29.916303');
INSERT INTO `tb_region` VALUES (1043, 1035, '洋山', '洋山岛', '中国,浙江省,舟山群岛新区,洋山岛', 3, 'yangshan', '0580', '316000', 'Y', '121.995891', '30.094637');
INSERT INTO `tb_region` VALUES (1044, 1035, '长涂', '长涂岛', '中国,浙江省,舟山群岛新区,长涂岛', 3, 'changtu', '0580', '316000', 'C', '122.284681', '30.24888');
INSERT INTO `tb_region` VALUES (1045, 1035, '虾峙', '虾峙岛', '中国,浙江省,舟山群岛新区,虾峙岛', 3, 'xiazhi', '0580', '316000', 'X', '122.244686', '29.752941');
INSERT INTO `tb_region` VALUES (1046, 0, '安徽', '安徽省', '中国,安徽省', 1, 'anhui', '', '', 'A', '117.283042', '31.86119');
INSERT INTO `tb_region` VALUES (1047, 1046, '合肥', '合肥市', '中国,安徽省,合肥市', 2, 'hefei', '0551', '230001', 'H', '117.283042', '31.86119');
INSERT INTO `tb_region` VALUES (1048, 1047, '瑶海', '瑶海区', '中国,安徽省,合肥市,瑶海区', 3, 'yaohai', '0551', '230011', 'Y', '117.30947', '31.85809');
INSERT INTO `tb_region` VALUES (1049, 1047, '庐阳', '庐阳区', '中国,安徽省,合肥市,庐阳区', 3, 'luyang', '0551', '230001', 'L', '117.26452', '31.87874');
INSERT INTO `tb_region` VALUES (1050, 1047, '蜀山', '蜀山区', '中国,安徽省,合肥市,蜀山区', 3, 'shushan', '0551', '230031', 'S', '117.26104', '31.85117');
INSERT INTO `tb_region` VALUES (1051, 1047, '包河', '包河区', '中国,安徽省,合肥市,包河区', 3, 'baohe', '0551', '230041', 'B', '117.30984', '31.79502');
INSERT INTO `tb_region` VALUES (1052, 1047, '长丰', '长丰县', '中国,安徽省,合肥市,长丰县', 3, 'changfeng', '0551', '231100', 'C', '117.16549', '32.47959');
INSERT INTO `tb_region` VALUES (1053, 1047, '肥东', '肥东县', '中国,安徽省,合肥市,肥东县', 3, 'feidong', '0551', '231600', 'F', '117.47128', '31.88525');
INSERT INTO `tb_region` VALUES (1054, 1047, '肥西', '肥西县', '中国,安徽省,合肥市,肥西县', 3, 'feixi', '0551', '231200', 'F', '117.16845', '31.72143');
INSERT INTO `tb_region` VALUES (1055, 1047, '庐江', '庐江县', '中国,安徽省,合肥市,庐江县', 3, 'lujiang', '0565', '231500', 'L', '117.289844', '31.251488');
INSERT INTO `tb_region` VALUES (1056, 1047, '巢湖', '巢湖市', '中国,安徽省,合肥市,巢湖市', 3, 'chaohu', '0565', '238000', 'C', '117.874155', '31.600518');
INSERT INTO `tb_region` VALUES (1057, 1046, '芜湖', '芜湖市', '中国,安徽省,芜湖市', 2, 'wuhu', '0551', '241000', 'W', '118.376451', '31.326319');
INSERT INTO `tb_region` VALUES (1058, 1057, '镜湖', '镜湖区', '中国,安徽省,芜湖市,镜湖区', 3, 'jinghu', '0553', '241000', 'J', '118.38525', '31.34038');
INSERT INTO `tb_region` VALUES (1059, 1057, '弋江', '弋江区', '中国,安徽省,芜湖市,弋江区', 3, 'yijiang', '0553', '241000', 'Y', '118.37265', '31.31178');
INSERT INTO `tb_region` VALUES (1060, 1057, '鸠江', '鸠江区', '中国,安徽省,芜湖市,鸠江区', 3, 'jiujiang', '0553', '241000', 'J', '118.39215', '31.36928');
INSERT INTO `tb_region` VALUES (1061, 1057, '三山', '三山区', '中国,安徽省,芜湖市,三山区', 3, 'sanshan', '0553', '241000', 'S', '118.22509', '31.20703');
INSERT INTO `tb_region` VALUES (1062, 1057, '芜湖', '芜湖县', '中国,安徽省,芜湖市,芜湖县', 3, 'wuhu', '0553', '241100', 'W', '118.57525', '31.13476');
INSERT INTO `tb_region` VALUES (1063, 1057, '繁昌', '繁昌县', '中国,安徽省,芜湖市,繁昌县', 3, 'fanchang', '0553', '241200', 'F', '118.19982', '31.08319');
INSERT INTO `tb_region` VALUES (1064, 1057, '南陵', '南陵县', '中国,安徽省,芜湖市,南陵县', 3, 'nanling', '0553', '242400', 'N', '118.33688', '30.91969');
INSERT INTO `tb_region` VALUES (1065, 1057, '无为', '无为县', '中国,安徽省,芜湖市,无为县', 3, 'wuwei', '0565', '238300', 'W', '117.911432', '31.303075');
INSERT INTO `tb_region` VALUES (1066, 1046, '蚌埠', '蚌埠市', '中国,安徽省,蚌埠市', 2, 'bengbu', '0552', '233000', 'B', '117.36237', '32.934037');
INSERT INTO `tb_region` VALUES (1067, 1066, '龙子湖', '龙子湖区', '中国,安徽省,蚌埠市,龙子湖区', 3, 'longzihu', '0552', '233000', 'L', '117.39379', '32.94301');
INSERT INTO `tb_region` VALUES (1068, 1066, '蚌山', '蚌山区', '中国,安徽省,蚌埠市,蚌山区', 3, 'bengshan', '0552', '233000', 'B', '117.36767', '32.94411');
INSERT INTO `tb_region` VALUES (1069, 1066, '禹会', '禹会区', '中国,安徽省,蚌埠市,禹会区', 3, 'yuhui', '0552', '233010', 'Y', '117.35315', '32.93336');
INSERT INTO `tb_region` VALUES (1070, 1066, '淮上', '淮上区', '中国,安徽省,蚌埠市,淮上区', 3, 'huaishang', '0552', '233002', 'H', '117.35983', '32.96423');
INSERT INTO `tb_region` VALUES (1071, 1066, '怀远', '怀远县', '中国,安徽省,蚌埠市,怀远县', 3, 'huaiyuan', '0552', '233400', 'H', '117.20507', '32.97007');
INSERT INTO `tb_region` VALUES (1072, 1066, '五河', '五河县', '中国,安徽省,蚌埠市,五河县', 3, 'wuhe', '0552', '233300', 'W', '117.89144', '33.14457');
INSERT INTO `tb_region` VALUES (1073, 1066, '固镇', '固镇县', '中国,安徽省,蚌埠市,固镇县', 3, 'guzhen', '0552', '233700', 'G', '117.31558', '33.31803');
INSERT INTO `tb_region` VALUES (1074, 1046, '淮南', '淮南市', '中国,安徽省,淮南市', 2, 'huainan', '0554', '232001', 'H', '117.025449', '32.645947');
INSERT INTO `tb_region` VALUES (1075, 1074, '大通', '大通区', '中国,安徽省,淮南市,大通区', 3, 'datong', '0554', '232033', 'D', '117.05255', '32.63265');
INSERT INTO `tb_region` VALUES (1076, 1074, '田家庵', '田家庵区', '中国,安徽省,淮南市,田家庵区', 3, 'tianjiaan', '0554', '232000', 'T', '117.01739', '32.64697');
INSERT INTO `tb_region` VALUES (1077, 1074, '谢家集', '谢家集区', '中国,安徽省,淮南市,谢家集区', 3, 'xiejiaji', '0554', '232052', 'X', '116.86377', '32.59818');
INSERT INTO `tb_region` VALUES (1078, 1074, '八公山', '八公山区', '中国,安徽省,淮南市,八公山区', 3, 'bagongshan', '0554', '232072', 'B', '116.83694', '32.62941');
INSERT INTO `tb_region` VALUES (1079, 1074, '潘集', '潘集区', '中国,安徽省,淮南市,潘集区', 3, 'panji', '0554', '232082', 'P', '116.81622', '32.78287');
INSERT INTO `tb_region` VALUES (1080, 1074, '凤台', '凤台县', '中国,安徽省,淮南市,凤台县', 3, 'fengtai', '0554', '232100', 'F', '116.71569', '32.70752');
INSERT INTO `tb_region` VALUES (1081, 1046, '马鞍山', '马鞍山市', '中国,安徽省,马鞍山市', 2, 'ma\'anshan', '0555', '243001', 'M', '118.507906', '31.689362');
INSERT INTO `tb_region` VALUES (1082, 1081, '花山', '花山区', '中国,安徽省,马鞍山市,花山区', 3, 'huashan', '0555', '243000', 'H', '118.51231', '31.7001');
INSERT INTO `tb_region` VALUES (1083, 1081, '雨山', '雨山区', '中国,安徽省,马鞍山市,雨山区', 3, 'yushan', '0555', '243071', 'Y', '118.49869', '31.68219');
INSERT INTO `tb_region` VALUES (1084, 1081, '博望', '博望区', '中国,安徽省,马鞍山市,博望区', 3, 'bowang', '0555', '243131', 'B', '118.844387', '31.561871');
INSERT INTO `tb_region` VALUES (1085, 1081, '当涂', '当涂县', '中国,安徽省,马鞍山市,当涂县', 3, 'dangtu', '0555', '243100', 'D', '118.49786', '31.57098');
INSERT INTO `tb_region` VALUES (1086, 1081, '含山', '含山县', '中国,安徽省,马鞍山市,含山县', 3, 'hanshan', '0555', '238100', 'H', '118.105545', '31.727758');
INSERT INTO `tb_region` VALUES (1087, 1081, '和县', '和县', '中国,安徽省,马鞍山市,和县', 3, 'hexian', '0555', '238200', 'H', '118.351405', '31.741794');
INSERT INTO `tb_region` VALUES (1088, 1046, '淮北', '淮北市', '中国,安徽省,淮北市', 2, 'huaibei', '0561', '235000', 'H', '116.794664', '33.971707');
INSERT INTO `tb_region` VALUES (1089, 1088, '杜集', '杜集区', '中国,安徽省,淮北市,杜集区', 3, 'duji', '0561', '235000', 'D', '116.82998', '33.99363');
INSERT INTO `tb_region` VALUES (1090, 1088, '相山', '相山区', '中国,安徽省,淮北市,相山区', 3, 'xiangshan', '0561', '235000', 'X', '116.79464', '33.95979');
INSERT INTO `tb_region` VALUES (1091, 1088, '烈山', '烈山区', '中国,安徽省,淮北市,烈山区', 3, 'lieshan', '0561', '235000', 'L', '116.81448', '33.89355');
INSERT INTO `tb_region` VALUES (1092, 1088, '濉溪', '濉溪县', '中国,安徽省,淮北市,濉溪县', 3, 'suixi', '0561', '235100', 'S', '116.76785', '33.91455');
INSERT INTO `tb_region` VALUES (1093, 1046, '铜陵', '铜陵市', '中国,安徽省,铜陵市', 2, 'tongling', '0562', '244000', 'T', '117.816576', '30.929935');
INSERT INTO `tb_region` VALUES (1094, 1093, '铜官山', '铜官山区', '中国,安徽省,铜陵市,铜官山区', 3, 'tongguanshan', '0562', '244000', 'T', '117.81525', '30.93423');
INSERT INTO `tb_region` VALUES (1095, 1093, '狮子山', '狮子山区', '中国,安徽省,铜陵市,狮子山区', 3, 'shizishan', '0562', '244000', 'S', '117.89178', '30.92631');
INSERT INTO `tb_region` VALUES (1096, 1093, '郊区', '郊区', '中国,安徽省,铜陵市,郊区', 3, 'jiaoqu', '0562', '244000', 'J', '117.80868', '30.91976');
INSERT INTO `tb_region` VALUES (1097, 1093, '铜陵', '铜陵县', '中国,安徽省,铜陵市,铜陵县', 3, 'tongling', '0562', '244100', 'T', '117.79113', '30.95365');
INSERT INTO `tb_region` VALUES (1098, 1046, '安庆', '安庆市', '中国,安徽省,安庆市', 2, 'anqing', '0556', '246001', 'A', '117.053571', '30.524816');
INSERT INTO `tb_region` VALUES (1099, 1098, '迎江', '迎江区', '中国,安徽省,安庆市,迎江区', 3, 'yingjiang', '0556', '246001', 'Y', '117.0493', '30.50421');
INSERT INTO `tb_region` VALUES (1100, 1098, '大观', '大观区', '中国,安徽省,安庆市,大观区', 3, 'daguan', '0556', '246002', 'D', '117.03426', '30.51216');
INSERT INTO `tb_region` VALUES (1101, 1098, '宜秀', '宜秀区', '中国,安徽省,安庆市,宜秀区', 3, 'yixiu', '0556', '246003', 'Y', '117.06127', '30.50783');
INSERT INTO `tb_region` VALUES (1102, 1098, '怀宁', '怀宁县', '中国,安徽省,安庆市,怀宁县', 3, 'huaining', '0556', '246100', 'H', '116.82968', '30.73376');
INSERT INTO `tb_region` VALUES (1103, 1098, '枞阳', '枞阳县', '中国,安徽省,安庆市,枞阳县', 3, 'zongyang', '0556', '246700', 'Z', '117.22015', '30.69956');
INSERT INTO `tb_region` VALUES (1104, 1098, '潜山', '潜山县', '中国,安徽省,安庆市,潜山县', 3, 'qianshan', '0556', '246300', 'Q', '116.57574', '30.63037');
INSERT INTO `tb_region` VALUES (1105, 1098, '太湖', '太湖县', '中国,安徽省,安庆市,太湖县', 3, 'taihu', '0556', '246400', 'T', '116.3088', '30.4541');
INSERT INTO `tb_region` VALUES (1106, 1098, '宿松', '宿松县', '中国,安徽省,安庆市,宿松县', 3, 'susong', '0556', '246500', 'S', '116.12915', '30.1536');
INSERT INTO `tb_region` VALUES (1107, 1098, '望江', '望江县', '中国,安徽省,安庆市,望江县', 3, 'wangjiang', '0556', '246200', 'W', '116.68814', '30.12585');
INSERT INTO `tb_region` VALUES (1108, 1098, '岳西', '岳西县', '中国,安徽省,安庆市,岳西县', 3, 'yuexi', '0556', '246600', 'Y', '116.35995', '30.84983');
INSERT INTO `tb_region` VALUES (1109, 1098, '桐城', '桐城市', '中国,安徽省,安庆市,桐城市', 3, 'tongcheng', '0556', '231400', 'T', '116.95071', '31.05216');
INSERT INTO `tb_region` VALUES (1110, 1046, '黄山', '黄山市', '中国,安徽省,黄山市', 2, 'huangshan', '0559', '245000', 'H', '118.317325', '29.709239');
INSERT INTO `tb_region` VALUES (1111, 1110, '屯溪', '屯溪区', '中国,安徽省,黄山市,屯溪区', 3, 'tunxi', '0559', '245000', 'T', '118.33368', '29.71138');
INSERT INTO `tb_region` VALUES (1112, 1110, '黄山', '黄山区', '中国,安徽省,黄山市,黄山区', 3, 'huangshan', '0559', '242700', 'H', '118.1416', '30.2729');
INSERT INTO `tb_region` VALUES (1113, 1110, '徽州', '徽州区', '中国,安徽省,黄山市,徽州区', 3, 'huizhou', '0559', '245061', 'H', '118.33654', '29.82784');
INSERT INTO `tb_region` VALUES (1114, 1110, '歙县', '歙县', '中国,安徽省,黄山市,歙县', 3, 'shexian', '0559', '245200', 'S', '118.43676', '29.86745');
INSERT INTO `tb_region` VALUES (1115, 1110, '休宁', '休宁县', '中国,安徽省,黄山市,休宁县', 3, 'xiuning', '0559', '245400', 'X', '118.18136', '29.78607');
INSERT INTO `tb_region` VALUES (1116, 1110, '黟县', '黟县', '中国,安徽省,黄山市,黟县', 3, 'yixian', '0559', '245500', 'Y', '117.94137', '29.92588');
INSERT INTO `tb_region` VALUES (1117, 1110, '祁门', '祁门县', '中国,安徽省,黄山市,祁门县', 3, 'qimen', '0559', '245600', 'Q', '117.71847', '29.85723');
INSERT INTO `tb_region` VALUES (1118, 1046, '滁州', '滁州市', '中国,安徽省,滁州市', 2, 'chuzhou', '0550', '239000', 'C', '118.316264', '32.303627');
INSERT INTO `tb_region` VALUES (1119, 1118, '琅琊', '琅琊区', '中国,安徽省,滁州市,琅琊区', 3, 'langya', '0550', '239000', 'L', '118.30538', '32.29521');
INSERT INTO `tb_region` VALUES (1120, 1118, '南谯', '南谯区', '中国,安徽省,滁州市,南谯区', 3, 'nanqiao', '0550', '239000', 'N', '118.31222', '32.31861');
INSERT INTO `tb_region` VALUES (1121, 1118, '来安', '来安县', '中国,安徽省,滁州市,来安县', 3, 'lai\'an', '0550', '239200', 'L', '118.43438', '32.45176');
INSERT INTO `tb_region` VALUES (1122, 1118, '全椒', '全椒县', '中国,安徽省,滁州市,全椒县', 3, 'quanjiao', '0550', '239500', 'Q', '118.27291', '32.08524');
INSERT INTO `tb_region` VALUES (1123, 1118, '定远', '定远县', '中国,安徽省,滁州市,定远县', 3, 'dingyuan', '0550', '233200', 'D', '117.68035', '32.52488');
INSERT INTO `tb_region` VALUES (1124, 1118, '凤阳', '凤阳县', '中国,安徽省,滁州市,凤阳县', 3, 'fengyang', '0550', '233100', 'F', '117.56454', '32.86507');
INSERT INTO `tb_region` VALUES (1125, 1118, '天长', '天长市', '中国,安徽省,滁州市,天长市', 3, 'tianchang', '0550', '239300', 'T', '118.99868', '32.69124');
INSERT INTO `tb_region` VALUES (1126, 1118, '明光', '明光市', '中国,安徽省,滁州市,明光市', 3, 'mingguang', '0550', '239400', 'M', '117.99093', '32.77819');
INSERT INTO `tb_region` VALUES (1127, 1046, '阜阳', '阜阳市', '中国,安徽省,阜阳市', 2, 'fuyang', '0558', '236033', 'F', '115.819729', '32.896969');
INSERT INTO `tb_region` VALUES (1128, 1127, '颍州', '颍州区', '中国,安徽省,阜阳市,颍州区', 3, 'yingzhou', '0558', '236001', 'Y', '115.80694', '32.88346');
INSERT INTO `tb_region` VALUES (1129, 1127, '颍东', '颍东区', '中国,安徽省,阜阳市,颍东区', 3, 'yingdong', '0558', '236058', 'Y', '115.85659', '32.91296');
INSERT INTO `tb_region` VALUES (1130, 1127, '颍泉', '颍泉区', '中国,安徽省,阜阳市,颍泉区', 3, 'yingquan', '0558', '236045', 'Y', '115.80712', '32.9249');
INSERT INTO `tb_region` VALUES (1131, 1127, '临泉', '临泉县', '中国,安徽省,阜阳市,临泉县', 3, 'linquan', '0558', '236400', 'L', '115.26232', '33.06758');
INSERT INTO `tb_region` VALUES (1132, 1127, '太和', '太和县', '中国,安徽省,阜阳市,太和县', 3, 'taihe', '0558', '236600', 'T', '115.62191', '33.16025');
INSERT INTO `tb_region` VALUES (1133, 1127, '阜南', '阜南县', '中国,安徽省,阜阳市,阜南县', 3, 'funan', '0558', '236300', 'F', '115.58563', '32.63551');
INSERT INTO `tb_region` VALUES (1134, 1127, '颍上', '颍上县', '中国,安徽省,阜阳市,颍上县', 3, 'yingshang', '0558', '236200', 'Y', '116.26458', '32.62998');
INSERT INTO `tb_region` VALUES (1135, 1127, '界首', '界首市', '中国,安徽省,阜阳市,界首市', 3, 'jieshou', '0558', '236500', 'J', '115.37445', '33.25714');
INSERT INTO `tb_region` VALUES (1136, 1046, '宿州', '宿州市', '中国,安徽省,宿州市', 2, 'suzhou', '0557', '234000', 'S', '116.984084', '33.633891');
INSERT INTO `tb_region` VALUES (1137, 1136, '埇桥', '埇桥区', '中国,安徽省,宿州市,埇桥区', 3, 'yongqiao', '0557', '234000', 'Y', '116.97731', '33.64058');
INSERT INTO `tb_region` VALUES (1138, 1136, '砀山', '砀山县', '中国,安徽省,宿州市,砀山县', 3, 'dangshan', '0557', '235300', 'D', '116.35363', '34.42356');
INSERT INTO `tb_region` VALUES (1139, 1136, '萧县', '萧县', '中国,安徽省,宿州市,萧县', 3, 'xiaoxian', '0557', '235200', 'X', '116.94546', '34.1879');
INSERT INTO `tb_region` VALUES (1140, 1136, '灵璧', '灵璧县', '中国,安徽省,宿州市,灵璧县', 3, 'lingbi', '0557', '234200', 'L', '117.55813', '33.54339');
INSERT INTO `tb_region` VALUES (1141, 1136, '泗县', '泗县', '中国,安徽省,宿州市,泗县', 3, 'sixian', '0557', '234300', 'S', '117.91033', '33.48295');
INSERT INTO `tb_region` VALUES (1142, 1046, '六安', '六安市', '中国,安徽省,六安市', 2, 'lu\'an', '0564', '237000', 'L', '116.507676', '31.752889');
INSERT INTO `tb_region` VALUES (1143, 1142, '金安', '金安区', '中国,安徽省,六安市,金安区', 3, 'jin\'an', '0564', '237005', 'J', '116.50912', '31.75573');
INSERT INTO `tb_region` VALUES (1144, 1142, '裕安', '裕安区', '中国,安徽省,六安市,裕安区', 3, 'yu\'an', '0564', '237010', 'Y', '116.47985', '31.73787');
INSERT INTO `tb_region` VALUES (1145, 1142, '寿县', '寿县', '中国,安徽省,六安市,寿县', 3, 'shouxian', '0564', '232200', 'S', '116.78466', '32.57653');
INSERT INTO `tb_region` VALUES (1146, 1142, '霍邱', '霍邱县', '中国,安徽省,六安市,霍邱县', 3, 'huoqiu', '0564', '237400', 'H', '116.27795', '32.353');
INSERT INTO `tb_region` VALUES (1147, 1142, '舒城', '舒城县', '中国,安徽省,六安市,舒城县', 3, 'shucheng', '0564', '231300', 'S', '116.94491', '31.46413');
INSERT INTO `tb_region` VALUES (1148, 1142, '金寨', '金寨县', '中国,安徽省,六安市,金寨县', 3, 'jinzhai', '0564', '237300', 'J', '115.93463', '31.7351');
INSERT INTO `tb_region` VALUES (1149, 1142, '霍山', '霍山县', '中国,安徽省,六安市,霍山县', 3, 'huoshan', '0564', '237200', 'H', '116.33291', '31.3929');
INSERT INTO `tb_region` VALUES (1150, 1046, '亳州', '亳州市', '中国,安徽省,亳州市', 2, 'bozhou', '0558', '236802', 'B', '115.782939', '33.869338');
INSERT INTO `tb_region` VALUES (1151, 1150, '谯城', '谯城区', '中国,安徽省,亳州市,谯城区', 3, 'qiaocheng', '0558', '236800', 'Q', '115.77941', '33.87532');
INSERT INTO `tb_region` VALUES (1152, 1150, '涡阳', '涡阳县', '中国,安徽省,亳州市,涡阳县', 3, 'guoyang', '0558', '233600', 'W', '116.21682', '33.50911');
INSERT INTO `tb_region` VALUES (1153, 1150, '蒙城', '蒙城县', '中国,安徽省,亳州市,蒙城县', 3, 'mengcheng', '0558', '233500', 'M', '116.5646', '33.26477');
INSERT INTO `tb_region` VALUES (1154, 1150, '利辛', '利辛县', '中国,安徽省,亳州市,利辛县', 3, 'lixin', '0558', '236700', 'L', '116.208', '33.14198');
INSERT INTO `tb_region` VALUES (1155, 1046, '池州', '池州市', '中国,安徽省,池州市', 2, 'chizhou', '0566', '247100', 'C', '117.489157', '30.656037');
INSERT INTO `tb_region` VALUES (1156, 1155, '贵池', '贵池区', '中国,安徽省,池州市,贵池区', 3, 'guichi', '0566', '247100', 'G', '117.48722', '30.65283');
INSERT INTO `tb_region` VALUES (1157, 1155, '东至', '东至县', '中国,安徽省,池州市,东至县', 3, 'dongzhi', '0566', '247200', 'D', '117.02719', '30.0969');
INSERT INTO `tb_region` VALUES (1158, 1155, '石台', '石台县', '中国,安徽省,池州市,石台县', 3, 'shitai', '0566', '245100', 'S', '117.48666', '30.21042');
INSERT INTO `tb_region` VALUES (1159, 1155, '青阳', '青阳县', '中国,安徽省,池州市,青阳县', 3, 'qingyang', '0566', '242800', 'Q', '117.84744', '30.63932');
INSERT INTO `tb_region` VALUES (1160, 1046, '宣城', '宣城市', '中国,安徽省,宣城市', 2, 'xuancheng', '0563', '242000', 'X', '118.757995', '30.945667');
INSERT INTO `tb_region` VALUES (1161, 1160, '宣州', '宣州区', '中国,安徽省,宣城市,宣州区', 3, 'xuanzhou', '0563', '242000', 'X', '118.75462', '30.94439');
INSERT INTO `tb_region` VALUES (1162, 1160, '郎溪', '郎溪县', '中国,安徽省,宣城市,郎溪县', 3, 'langxi', '0563', '242100', 'L', '119.17923', '31.12599');
INSERT INTO `tb_region` VALUES (1163, 1160, '广德', '广德县', '中国,安徽省,宣城市,广德县', 3, 'guangde', '0563', '242200', 'G', '119.41769', '30.89371');
INSERT INTO `tb_region` VALUES (1164, 1160, '泾县', '泾县', '中国,安徽省,宣城市,泾县', 3, 'jingxian', '0563', '242500', 'J', '118.41964', '30.69498');
INSERT INTO `tb_region` VALUES (1165, 1160, '绩溪', '绩溪县', '中国,安徽省,宣城市,绩溪县', 3, 'jixi', '0563', '245300', 'J', '118.59765', '30.07069');
INSERT INTO `tb_region` VALUES (1166, 1160, '旌德', '旌德县', '中国,安徽省,宣城市,旌德县', 3, 'jingde', '0563', '242600', 'J', '118.54299', '30.28898');
INSERT INTO `tb_region` VALUES (1167, 1160, '宁国', '宁国市', '中国,安徽省,宣城市,宁国市', 3, 'ningguo', '0563', '242300', 'N', '118.98349', '30.6238');
INSERT INTO `tb_region` VALUES (1168, 0, '福建', '福建省', '中国,福建省', 1, 'fujian', '', '', 'F', '119.306239', '26.075302');
INSERT INTO `tb_region` VALUES (1169, 1168, '福州', '福州市', '中国,福建省,福州市', 2, 'fuzhou', '0591', '350001', 'F', '119.306239', '26.075302');
INSERT INTO `tb_region` VALUES (1170, 1169, '鼓楼', '鼓楼区', '中国,福建省,福州市,鼓楼区', 3, 'gulou', '0591', '350001', 'G', '119.30384', '26.08225');
INSERT INTO `tb_region` VALUES (1171, 1169, '台江', '台江区', '中国,福建省,福州市,台江区', 3, 'taijiang', '0591', '350004', 'T', '119.30899', '26.06204');
INSERT INTO `tb_region` VALUES (1172, 1169, '仓山', '仓山区', '中国,福建省,福州市,仓山区', 3, 'cangshan', '0591', '350007', 'C', '119.31543', '26.04335');
INSERT INTO `tb_region` VALUES (1173, 1169, '马尾', '马尾区', '中国,福建省,福州市,马尾区', 3, 'mawei', '0591', '350015', 'M', '119.4555', '25.98942');
INSERT INTO `tb_region` VALUES (1174, 1169, '晋安', '晋安区', '中国,福建省,福州市,晋安区', 3, 'jin\'an', '0591', '350011', 'J', '119.32828', '26.0818');
INSERT INTO `tb_region` VALUES (1175, 1169, '闽侯', '闽侯县', '中国,福建省,福州市,闽侯县', 3, 'minhou', '0591', '350100', 'M', '119.13388', '26.15014');
INSERT INTO `tb_region` VALUES (1176, 1169, '连江', '连江县', '中国,福建省,福州市,连江县', 3, 'lianjiang', '0591', '350500', 'L', '119.53433', '26.19466');
INSERT INTO `tb_region` VALUES (1177, 1169, '罗源', '罗源县', '中国,福建省,福州市,罗源县', 3, 'luoyuan', '0591', '350600', 'L', '119.5509', '26.48752');
INSERT INTO `tb_region` VALUES (1178, 1169, '闽清', '闽清县', '中国,福建省,福州市,闽清县', 3, 'minqing', '0591', '350800', 'M', '118.8623', '26.21901');
INSERT INTO `tb_region` VALUES (1179, 1169, '永泰', '永泰县', '中国,福建省,福州市,永泰县', 3, 'yongtai', '0591', '350700', 'Y', '118.936', '25.86816');
INSERT INTO `tb_region` VALUES (1180, 1169, '平潭', '平潭县', '中国,福建省,福州市,平潭县', 3, 'pingtan', '0591', '350400', 'P', '119.791197', '25.503672');
INSERT INTO `tb_region` VALUES (1181, 1169, '福清', '福清市', '中国,福建省,福州市,福清市', 3, 'fuqing', '0591', '350300', 'F', '119.38507', '25.72086');
INSERT INTO `tb_region` VALUES (1182, 1169, '长乐', '长乐市', '中国,福建省,福州市,长乐市', 3, 'changle', '0591', '350200', 'C', '119.52313', '25.96276');
INSERT INTO `tb_region` VALUES (1183, 1168, '厦门', '厦门市', '中国,福建省,厦门市', 2, 'xiamen', '0592', '361003', 'X', '118.11022', '24.490474');
INSERT INTO `tb_region` VALUES (1184, 1183, '思明', '思明区', '中国,福建省,厦门市,思明区', 3, 'siming', '0592', '361001', 'S', '118.08233', '24.44543');
INSERT INTO `tb_region` VALUES (1185, 1183, '海沧', '海沧区', '中国,福建省,厦门市,海沧区', 3, 'haicang', '0592', '361026', 'H', '118.03289', '24.48461');
INSERT INTO `tb_region` VALUES (1186, 1183, '湖里', '湖里区', '中国,福建省,厦门市,湖里区', 3, 'huli', '0592', '361006', 'H', '118.14621', '24.51253');
INSERT INTO `tb_region` VALUES (1187, 1183, '集美', '集美区', '中国,福建省,厦门市,集美区', 3, 'jimei', '0592', '361021', 'J', '118.09719', '24.57584');
INSERT INTO `tb_region` VALUES (1188, 1183, '同安', '同安区', '中国,福建省,厦门市,同安区', 3, 'tong\'an', '0592', '361100', 'T', '118.15197', '24.72308');
INSERT INTO `tb_region` VALUES (1189, 1183, '翔安', '翔安区', '中国,福建省,厦门市,翔安区', 3, 'xiang\'an', '0592', '361101', 'X', '118.24783', '24.61863');
INSERT INTO `tb_region` VALUES (1190, 1168, '莆田', '莆田市', '中国,福建省,莆田市', 2, 'putian', '0594', '351100', 'P', '119.007558', '25.431011');
INSERT INTO `tb_region` VALUES (1191, 1190, '城厢', '城厢区', '中国,福建省,莆田市,城厢区', 3, 'chengxiang', '0594', '351100', 'C', '118.99462', '25.41872');
INSERT INTO `tb_region` VALUES (1192, 1190, '涵江', '涵江区', '中国,福建省,莆田市,涵江区', 3, 'hanjiang', '0594', '351111', 'H', '119.11621', '25.45876');
INSERT INTO `tb_region` VALUES (1193, 1190, '荔城', '荔城区', '中国,福建省,莆田市,荔城区', 3, 'licheng', '0594', '351100', 'L', '119.01339', '25.43369');
INSERT INTO `tb_region` VALUES (1194, 1190, '秀屿', '秀屿区', '中国,福建省,莆田市,秀屿区', 3, 'xiuyu', '0594', '351152', 'X', '119.10553', '25.31831');
INSERT INTO `tb_region` VALUES (1195, 1190, '仙游', '仙游县', '中国,福建省,莆田市,仙游县', 3, 'xianyou', '0594', '351200', 'X', '118.69177', '25.36214');
INSERT INTO `tb_region` VALUES (1196, 1168, '三明', '三明市', '中国,福建省,三明市', 2, 'sanming', '0598', '365000', 'S', '117.635001', '26.265444');
INSERT INTO `tb_region` VALUES (1197, 1196, '梅列', '梅列区', '中国,福建省,三明市,梅列区', 3, 'meilie', '0598', '365000', 'M', '117.64585', '26.27171');
INSERT INTO `tb_region` VALUES (1198, 1196, '三元', '三元区', '中国,福建省,三明市,三元区', 3, 'sanyuan', '0598', '365001', 'S', '117.60788', '26.23372');
INSERT INTO `tb_region` VALUES (1199, 1196, '明溪', '明溪县', '中国,福建省,三明市,明溪县', 3, 'mingxi', '0598', '365200', 'M', '117.20498', '26.35294');
INSERT INTO `tb_region` VALUES (1200, 1196, '清流', '清流县', '中国,福建省,三明市,清流县', 3, 'qingliu', '0598', '365300', 'Q', '116.8146', '26.17144');
INSERT INTO `tb_region` VALUES (1201, 1196, '宁化', '宁化县', '中国,福建省,三明市,宁化县', 3, 'ninghua', '0598', '365400', 'N', '116.66101', '26.25874');
INSERT INTO `tb_region` VALUES (1202, 1196, '大田', '大田县', '中国,福建省,三明市,大田县', 3, 'datian', '0598', '366100', 'D', '117.8471', '25.6926');
INSERT INTO `tb_region` VALUES (1203, 1196, '尤溪', '尤溪县', '中国,福建省,三明市,尤溪县', 3, 'youxi', '0598', '365100', 'Y', '118.19049', '26.17002');
INSERT INTO `tb_region` VALUES (1204, 1196, '沙县', '沙县', '中国,福建省,三明市,沙县', 3, 'shaxian', '0598', '365500', 'S', '117.79266', '26.39615');
INSERT INTO `tb_region` VALUES (1205, 1196, '将乐', '将乐县', '中国,福建省,三明市,将乐县', 3, 'jiangle', '0598', '353300', 'J', '117.47317', '26.72837');
INSERT INTO `tb_region` VALUES (1206, 1196, '泰宁', '泰宁县', '中国,福建省,三明市,泰宁县', 3, 'taining', '0598', '354400', 'T', '117.17578', '26.9001');
INSERT INTO `tb_region` VALUES (1207, 1196, '建宁', '建宁县', '中国,福建省,三明市,建宁县', 3, 'jianning', '0598', '354500', 'J', '116.84603', '26.83091');
INSERT INTO `tb_region` VALUES (1208, 1196, '永安', '永安市', '中国,福建省,三明市,永安市', 3, 'yong\'an', '0598', '366000', 'Y', '117.36517', '25.94136');
INSERT INTO `tb_region` VALUES (1209, 1168, '泉州', '泉州市', '中国,福建省,泉州市', 2, 'quanzhou', '0595', '362000', 'Q', '118.589421', '24.908853');
INSERT INTO `tb_region` VALUES (1210, 1209, '鲤城', '鲤城区', '中国,福建省,泉州市,鲤城区', 3, 'licheng', '0595', '362000', 'L', '118.56591', '24.88741');
INSERT INTO `tb_region` VALUES (1211, 1209, '丰泽', '丰泽区', '中国,福建省,泉州市,丰泽区', 3, 'fengze', '0595', '362000', 'F', '118.61328', '24.89119');
INSERT INTO `tb_region` VALUES (1212, 1209, '洛江', '洛江区', '中国,福建省,泉州市,洛江区', 3, 'luojiang', '0595', '362011', 'L', '118.67111', '24.93984');
INSERT INTO `tb_region` VALUES (1213, 1209, '泉港', '泉港区', '中国,福建省,泉州市,泉港区', 3, 'quangang', '0595', '362114', 'Q', '118.91586', '25.12005');
INSERT INTO `tb_region` VALUES (1214, 1209, '惠安', '惠安县', '中国,福建省,泉州市,惠安县', 3, 'hui\'an', '0595', '362100', 'H', '118.79687', '25.03059');
INSERT INTO `tb_region` VALUES (1215, 1209, '安溪', '安溪县', '中国,福建省,泉州市,安溪县', 3, 'anxi', '0595', '362400', 'A', '118.18719', '25.05627');
INSERT INTO `tb_region` VALUES (1216, 1209, '永春', '永春县', '中国,福建省,泉州市,永春县', 3, 'yongchun', '0595', '362600', 'Y', '118.29437', '25.32183');
INSERT INTO `tb_region` VALUES (1217, 1209, '德化', '德化县', '中国,福建省,泉州市,德化县', 3, 'dehua', '0595', '362500', 'D', '118.24176', '25.49224');
INSERT INTO `tb_region` VALUES (1218, 1209, '金门', '金门县', '中国,福建省,泉州市,金门县', 3, 'jinmen', '', '', 'J', '118.32263', '24.42922');
INSERT INTO `tb_region` VALUES (1219, 1209, '石狮', '石狮市', '中国,福建省,泉州市,石狮市', 3, 'shishi', '0595', '362700', 'S', '118.64779', '24.73242');
INSERT INTO `tb_region` VALUES (1220, 1209, '晋江', '晋江市', '中国,福建省,泉州市,晋江市', 3, 'jinjiang', '0595', '362200', 'J', '118.55194', '24.78141');
INSERT INTO `tb_region` VALUES (1221, 1209, '南安', '南安市', '中国,福建省,泉州市,南安市', 3, 'nan\'an', '0595', '362300', 'N', '118.38589', '24.96055');
INSERT INTO `tb_region` VALUES (1222, 1168, '漳州', '漳州市', '中国,福建省,漳州市', 2, 'zhangzhou', '0596', '363005', 'Z', '117.661801', '24.510897');
INSERT INTO `tb_region` VALUES (1223, 1222, '芗城', '芗城区', '中国,福建省,漳州市,芗城区', 3, 'xiangcheng', '0596', '363000', 'X', '117.65402', '24.51081');
INSERT INTO `tb_region` VALUES (1224, 1222, '龙文', '龙文区', '中国,福建省,漳州市,龙文区', 3, 'longwen', '0596', '363005', 'L', '117.70971', '24.50323');
INSERT INTO `tb_region` VALUES (1225, 1222, '云霄', '云霄县', '中国,福建省,漳州市,云霄县', 3, 'yunxiao', '0596', '363300', 'Y', '117.34051', '23.95534');
INSERT INTO `tb_region` VALUES (1226, 1222, '漳浦', '漳浦县', '中国,福建省,漳州市,漳浦县', 3, 'zhangpu', '0596', '363200', 'Z', '117.61367', '24.11706');
INSERT INTO `tb_region` VALUES (1227, 1222, '诏安', '诏安县', '中国,福建省,漳州市,诏安县', 3, 'zhao\'an', '0596', '363500', 'Z', '117.17501', '23.71148');
INSERT INTO `tb_region` VALUES (1228, 1222, '长泰', '长泰县', '中国,福建省,漳州市,长泰县', 3, 'changtai', '0596', '363900', 'C', '117.75924', '24.62526');
INSERT INTO `tb_region` VALUES (1229, 1222, '东山', '东山县', '中国,福建省,漳州市,东山县', 3, 'dongshan', '0596', '363400', 'D', '117.42822', '23.70109');
INSERT INTO `tb_region` VALUES (1230, 1222, '南靖', '南靖县', '中国,福建省,漳州市,南靖县', 3, 'nanjing', '0596', '363600', 'N', '117.35736', '24.51448');
INSERT INTO `tb_region` VALUES (1231, 1222, '平和', '平和县', '中国,福建省,漳州市,平和县', 3, 'pinghe', '0596', '363700', 'P', '117.3124', '24.36395');
INSERT INTO `tb_region` VALUES (1232, 1222, '华安', '华安县', '中国,福建省,漳州市,华安县', 3, 'hua\'an', '0596', '363800', 'H', '117.54077', '25.00563');
INSERT INTO `tb_region` VALUES (1233, 1222, '龙海', '龙海市', '中国,福建省,漳州市,龙海市', 3, 'longhai', '0596', '363100', 'L', '117.81802', '24.44655');
INSERT INTO `tb_region` VALUES (1234, 1168, '南平', '南平市', '中国,福建省,南平市', 2, 'nanping', '0599', '353000', 'N', '118.178459', '26.635627');
INSERT INTO `tb_region` VALUES (1235, 1234, '延平', '延平区', '中国,福建省,南平市,延平区', 3, 'yanping', '0600', '353000', 'Y', '118.18189', '26.63745');
INSERT INTO `tb_region` VALUES (1236, 1234, '建阳', '建阳区', '中国,福建省,南平市,建阳区', 3, 'jianyang', '0599', '354200', 'J', '118.12267', '27.332067');
INSERT INTO `tb_region` VALUES (1237, 1234, '顺昌', '顺昌县', '中国,福建省,南平市,顺昌县', 3, 'shunchang', '0605', '353200', 'S', '117.8103', '26.79298');
INSERT INTO `tb_region` VALUES (1238, 1234, '浦城', '浦城县', '中国,福建省,南平市,浦城县', 3, 'pucheng', '0606', '353400', 'P', '118.54007', '27.91888');
INSERT INTO `tb_region` VALUES (1239, 1234, '光泽', '光泽县', '中国,福建省,南平市,光泽县', 3, 'guangze', '0607', '354100', 'G', '117.33346', '27.54231');
INSERT INTO `tb_region` VALUES (1240, 1234, '松溪', '松溪县', '中国,福建省,南平市,松溪县', 3, 'songxi', '0608', '353500', 'S', '118.78533', '27.52624');
INSERT INTO `tb_region` VALUES (1241, 1234, '政和', '政和县', '中国,福建省,南平市,政和县', 3, 'zhenghe', '0609', '353600', 'Z', '118.85571', '27.36769');
INSERT INTO `tb_region` VALUES (1242, 1234, '邵武', '邵武市', '中国,福建省,南平市,邵武市', 3, 'shaowu', '0601', '354000', 'S', '117.4924', '27.34033');
INSERT INTO `tb_region` VALUES (1243, 1234, '武夷山', '武夷山市', '中国,福建省,南平市,武夷山市', 3, 'wuyishan', '0602', '354300', 'W', '118.03665', '27.75543');
INSERT INTO `tb_region` VALUES (1244, 1234, '建瓯', '建瓯市', '中国,福建省,南平市,建瓯市', 3, 'jianou', '0603', '353100', 'J', '118.29766', '27.02301');
INSERT INTO `tb_region` VALUES (1245, 1168, '龙岩', '龙岩市', '中国,福建省,龙岩市', 2, 'longyan', '0597', '364000', 'L', '117.02978', '25.091603');
INSERT INTO `tb_region` VALUES (1246, 1245, '新罗', '新罗区', '中国,福建省,龙岩市,新罗区', 3, 'xinluo', '0597', '364000', 'X', '117.03693', '25.09834');
INSERT INTO `tb_region` VALUES (1247, 1245, '长汀', '长汀县', '中国,福建省,龙岩市,长汀县', 3, 'changting', '0597', '366300', 'C', '116.35888', '25.82773');
INSERT INTO `tb_region` VALUES (1248, 1245, '永定', '永定区', '中国,福建省,龙岩市,永定区', 3, 'yongding', '0597', '364100', 'Y', '116.73199', '24.72302');
INSERT INTO `tb_region` VALUES (1249, 1245, '上杭', '上杭县', '中国,福建省,龙岩市,上杭县', 3, 'shanghang', '0597', '364200', 'S', '116.42022', '25.04943');
INSERT INTO `tb_region` VALUES (1250, 1245, '武平', '武平县', '中国,福建省,龙岩市,武平县', 3, 'wuping', '0597', '364300', 'W', '116.10229', '25.09244');
INSERT INTO `tb_region` VALUES (1251, 1245, '连城', '连城县', '中国,福建省,龙岩市,连城县', 3, 'liancheng', '0597', '366200', 'L', '116.75454', '25.7103');
INSERT INTO `tb_region` VALUES (1252, 1245, '漳平', '漳平市', '中国,福建省,龙岩市,漳平市', 3, 'zhangping', '0597', '364400', 'Z', '117.41992', '25.29109');
INSERT INTO `tb_region` VALUES (1253, 1168, '宁德', '宁德市', '中国,福建省,宁德市', 2, 'ningde', '0593', '352100', 'N', '119.527082', '26.65924');
INSERT INTO `tb_region` VALUES (1254, 1253, '蕉城', '蕉城区', '中国,福建省,宁德市,蕉城区', 3, 'jiaocheng', '0593', '352100', 'J', '119.52643', '26.66048');
INSERT INTO `tb_region` VALUES (1255, 1253, '霞浦', '霞浦县', '中国,福建省,宁德市,霞浦县', 3, 'xiapu', '0593', '355100', 'X', '119.99893', '26.88578');
INSERT INTO `tb_region` VALUES (1256, 1253, '古田', '古田县', '中国,福建省,宁德市,古田县', 3, 'gutian', '0593', '352200', 'G', '118.74688', '26.57682');
INSERT INTO `tb_region` VALUES (1257, 1253, '屏南', '屏南县', '中国,福建省,宁德市,屏南县', 3, 'pingnan', '0593', '352300', 'P', '118.98861', '26.91099');
INSERT INTO `tb_region` VALUES (1258, 1253, '寿宁', '寿宁县', '中国,福建省,宁德市,寿宁县', 3, 'shouning', '0593', '355500', 'S', '119.5039', '27.45996');
INSERT INTO `tb_region` VALUES (1259, 1253, '周宁', '周宁县', '中国,福建省,宁德市,周宁县', 3, 'zhouning', '0593', '355400', 'Z', '119.33837', '27.10664');
INSERT INTO `tb_region` VALUES (1260, 1253, '柘荣', '柘荣县', '中国,福建省,宁德市,柘荣县', 3, 'zherong', '0593', '355300', 'Z', '119.89971', '27.23543');
INSERT INTO `tb_region` VALUES (1261, 1253, '福安', '福安市', '中国,福建省,宁德市,福安市', 3, 'fu\'an', '0593', '355000', 'F', '119.6495', '27.08673');
INSERT INTO `tb_region` VALUES (1262, 1253, '福鼎', '福鼎市', '中国,福建省,宁德市,福鼎市', 3, 'fuding', '0593', '355200', 'F', '120.21664', '27.3243');
INSERT INTO `tb_region` VALUES (1263, 0, '江西', '江西省', '中国,江西省', 1, 'jiangxi', '', '', 'J', '115.892151', '28.676493');
INSERT INTO `tb_region` VALUES (1264, 1263, '南昌', '南昌市', '中国,江西省,南昌市', 2, 'nanchang', '0791', '330008', 'N', '115.892151', '28.676493');
INSERT INTO `tb_region` VALUES (1265, 1264, '东湖', '东湖区', '中国,江西省,南昌市,东湖区', 3, 'donghu', '0791', '330006', 'D', '115.8988', '28.68505');
INSERT INTO `tb_region` VALUES (1266, 1264, '西湖', '西湖区', '中国,江西省,南昌市,西湖区', 3, 'xihu', '0791', '330009', 'X', '115.87728', '28.65688');
INSERT INTO `tb_region` VALUES (1267, 1264, '青云谱', '青云谱区', '中国,江西省,南昌市,青云谱区', 3, 'qingyunpu', '0791', '330001', 'Q', '115.915', '28.63199');
INSERT INTO `tb_region` VALUES (1268, 1264, '湾里', '湾里区', '中国,江西省,南昌市,湾里区', 3, 'wanli', '0791', '330004', 'W', '115.73104', '28.71529');
INSERT INTO `tb_region` VALUES (1269, 1264, '青山湖', '青山湖区', '中国,江西省,南昌市,青山湖区', 3, 'qingshanhu', '0791', '330029', 'Q', '115.9617', '28.68206');
INSERT INTO `tb_region` VALUES (1270, 1264, '南昌', '南昌县', '中国,江西省,南昌市,南昌县', 3, 'nanchang', '0791', '330200', 'N', '115.94393', '28.54559');
INSERT INTO `tb_region` VALUES (1271, 1264, '新建', '新建县', '中国,江西省,南昌市,新建县', 3, 'xinjian', '0791', '330100', 'X', '115.81546', '28.69248');
INSERT INTO `tb_region` VALUES (1272, 1264, '安义', '安义县', '中国,江西省,南昌市,安义县', 3, 'anyi', '0791', '330500', 'A', '115.54879', '28.84602');
INSERT INTO `tb_region` VALUES (1273, 1264, '进贤', '进贤县', '中国,江西省,南昌市,进贤县', 3, 'jinxian', '0791', '331700', 'J', '116.24087', '28.37679');
INSERT INTO `tb_region` VALUES (1274, 1263, '景德镇', '景德镇市', '中国,江西省,景德镇市', 2, 'jingdezhen', '0798', '333000', 'J', '117.214664', '29.29256');
INSERT INTO `tb_region` VALUES (1275, 1274, '昌江', '昌江区', '中国,江西省,景德镇市,昌江区', 3, 'changjiang', '0799', '333000', 'C', '117.18359', '29.27321');
INSERT INTO `tb_region` VALUES (1276, 1274, '珠山', '珠山区', '中国,江西省,景德镇市,珠山区', 3, 'zhushan', '0800', '333000', 'Z', '117.20233', '29.30127');
INSERT INTO `tb_region` VALUES (1277, 1274, '浮梁', '浮梁县', '中国,江西省,景德镇市,浮梁县', 3, 'fuliang', '0802', '333400', 'F', '117.21517', '29.35156');
INSERT INTO `tb_region` VALUES (1278, 1274, '乐平', '乐平市', '中国,江西省,景德镇市,乐平市', 3, 'leping', '0801', '333300', 'L', '117.12887', '28.96295');
INSERT INTO `tb_region` VALUES (1279, 1263, '萍乡', '萍乡市', '中国,江西省,萍乡市', 2, 'pingxiang', '0799', '337000', 'P', '113.852186', '27.622946');
INSERT INTO `tb_region` VALUES (1280, 1279, '安源', '安源区', '中国,江西省,萍乡市,安源区', 3, 'anyuan', '0800', '337000', 'A', '113.89135', '27.61653');
INSERT INTO `tb_region` VALUES (1281, 1279, '湘东', '湘东区', '中国,江西省,萍乡市,湘东区', 3, 'xiangdong', '0801', '337016', 'X', '113.73294', '27.64007');
INSERT INTO `tb_region` VALUES (1282, 1279, '莲花', '莲花县', '中国,江西省,萍乡市,莲花县', 3, 'lianhua', '0802', '337100', 'L', '113.96142', '27.12866');
INSERT INTO `tb_region` VALUES (1283, 1279, '上栗', '上栗县', '中国,江西省,萍乡市,上栗县', 3, 'shangli', '0803', '337009', 'S', '113.79403', '27.87467');
INSERT INTO `tb_region` VALUES (1284, 1279, '芦溪', '芦溪县', '中国,江西省,萍乡市,芦溪县', 3, 'luxi', '0804', '337053', 'L', '114.02951', '27.63063');
INSERT INTO `tb_region` VALUES (1285, 1263, '九江', '九江市', '中国,江西省,九江市', 2, 'jiujiang', '0792', '332000', 'J', '115.992811', '29.712034');
INSERT INTO `tb_region` VALUES (1286, 1285, '庐山', '庐山区', '中国,江西省,九江市,庐山区', 3, 'lushan', '0792', '332005', 'L', '115.98904', '29.67177');
INSERT INTO `tb_region` VALUES (1287, 1285, '浔阳', '浔阳区', '中国,江西省,九江市,浔阳区', 3, 'xunyang', '0792', '332000', 'X', '115.98986', '29.72786');
INSERT INTO `tb_region` VALUES (1288, 1285, '九江', '九江县', '中国,江西省,九江市,九江县', 3, 'jiujiang', '0792', '332100', 'J', '115.91128', '29.60852');
INSERT INTO `tb_region` VALUES (1289, 1285, '武宁', '武宁县', '中国,江西省,九江市,武宁县', 3, 'wuning', '0792', '332300', 'W', '115.10061', '29.2584');
INSERT INTO `tb_region` VALUES (1290, 1285, '修水', '修水县', '中国,江西省,九江市,修水县', 3, 'xiushui', '0792', '332400', 'X', '114.54684', '29.02539');
INSERT INTO `tb_region` VALUES (1291, 1285, '永修', '永修县', '中国,江西省,九江市,永修县', 3, 'yongxiu', '0792', '330300', 'Y', '115.80911', '29.02093');
INSERT INTO `tb_region` VALUES (1292, 1285, '德安', '德安县', '中国,江西省,九江市,德安县', 3, 'de\'an', '0792', '330400', 'D', '115.75601', '29.31341');
INSERT INTO `tb_region` VALUES (1293, 1285, '星子', '星子县', '中国,江西省,九江市,星子县', 3, 'xingzi', '0792', '332800', 'X', '116.04492', '29.44608');
INSERT INTO `tb_region` VALUES (1294, 1285, '都昌', '都昌县', '中国,江西省,九江市,都昌县', 3, 'duchang', '0792', '332600', 'D', '116.20401', '29.27327');
INSERT INTO `tb_region` VALUES (1295, 1285, '湖口', '湖口县', '中国,江西省,九江市,湖口县', 3, 'hukou', '0792', '332500', 'H', '116.21853', '29.73818');
INSERT INTO `tb_region` VALUES (1296, 1285, '彭泽', '彭泽县', '中国,江西省,九江市,彭泽县', 3, 'pengze', '0792', '332700', 'P', '116.55011', '29.89589');
INSERT INTO `tb_region` VALUES (1297, 1285, '瑞昌', '瑞昌市', '中国,江西省,九江市,瑞昌市', 3, 'ruichang', '0792', '332200', 'R', '115.66705', '29.67183');
INSERT INTO `tb_region` VALUES (1298, 1285, '共青城', '共青城市', '中国,江西省,九江市,共青城市', 3, 'gongqingcheng', '0792', '332020', 'G', '115.801939', '29.238785');
INSERT INTO `tb_region` VALUES (1299, 1263, '新余', '新余市', '中国,江西省,新余市', 2, 'xinyu', '0790', '338025', 'X', '114.930835', '27.810834');
INSERT INTO `tb_region` VALUES (1300, 1299, '渝水', '渝水区', '中国,江西省,新余市,渝水区', 3, 'yushui', '0790', '338025', 'Y', '114.944', '27.80098');
INSERT INTO `tb_region` VALUES (1301, 1299, '分宜', '分宜县', '中国,江西省,新余市,分宜县', 3, 'fenyi', '0790', '336600', 'F', '114.69189', '27.81475');
INSERT INTO `tb_region` VALUES (1302, 1263, '鹰潭', '鹰潭市', '中国,江西省,鹰潭市', 2, 'yingtan', '0701', '335000', 'Y', '117.033838', '28.238638');
INSERT INTO `tb_region` VALUES (1303, 1302, '月湖', '月湖区', '中国,江西省,鹰潭市,月湖区', 3, 'yuehu', '0701', '335000', 'Y', '117.03732', '28.23913');
INSERT INTO `tb_region` VALUES (1304, 1302, '余江', '余江县', '中国,江西省,鹰潭市,余江县', 3, 'yujiang', '0701', '335200', 'Y', '116.81851', '28.21034');
INSERT INTO `tb_region` VALUES (1305, 1302, '贵溪', '贵溪市', '中国,江西省,鹰潭市,贵溪市', 3, 'guixi', '0701', '335400', 'G', '117.24246', '28.2926');
INSERT INTO `tb_region` VALUES (1306, 1263, '赣州', '赣州市', '中国,江西省,赣州市', 2, 'ganzhou', '0797', '341000', 'G', '114.940278', '25.85097');
INSERT INTO `tb_region` VALUES (1307, 1306, '章贡', '章贡区', '中国,江西省,赣州市,章贡区', 3, 'zhanggong', '0797', '341000', 'Z', '114.94284', '25.8624');
INSERT INTO `tb_region` VALUES (1308, 1306, '南康', '南康区', '中国,江西省,赣州市,南康区', 3, 'nankang', '0797', '341400', 'N', '114.756933', '25.661721');
INSERT INTO `tb_region` VALUES (1309, 1306, '赣县', '赣县', '中国,江西省,赣州市,赣县', 3, 'ganxian', '0797', '341100', 'G', '115.01171', '25.86149');
INSERT INTO `tb_region` VALUES (1310, 1306, '信丰', '信丰县', '中国,江西省,赣州市,信丰县', 3, 'xinfeng', '0797', '341600', 'X', '114.92279', '25.38612');
INSERT INTO `tb_region` VALUES (1311, 1306, '大余', '大余县', '中国,江西省,赣州市,大余县', 3, 'dayu', '0797', '341500', 'D', '114.35757', '25.39561');
INSERT INTO `tb_region` VALUES (1312, 1306, '上犹', '上犹县', '中国,江西省,赣州市,上犹县', 3, 'shangyou', '0797', '341200', 'S', '114.54138', '25.79567');
INSERT INTO `tb_region` VALUES (1313, 1306, '崇义', '崇义县', '中国,江西省,赣州市,崇义县', 3, 'chongyi', '0797', '341300', 'C', '114.30835', '25.68186');
INSERT INTO `tb_region` VALUES (1314, 1306, '安远', '安远县', '中国,江西省,赣州市,安远县', 3, 'anyuan', '0797', '342100', 'A', '115.39483', '25.1371');
INSERT INTO `tb_region` VALUES (1315, 1306, '龙南', '龙南县', '中国,江西省,赣州市,龙南县', 3, 'longnan', '0797', '341700', 'L', '114.78994', '24.91086');
INSERT INTO `tb_region` VALUES (1316, 1306, '定南', '定南县', '中国,江西省,赣州市,定南县', 3, 'dingnan', '0797', '341900', 'D', '115.02713', '24.78395');
INSERT INTO `tb_region` VALUES (1317, 1306, '全南', '全南县', '中国,江西省,赣州市,全南县', 3, 'quannan', '0797', '341800', 'Q', '114.5292', '24.74324');
INSERT INTO `tb_region` VALUES (1318, 1306, '宁都', '宁都县', '中国,江西省,赣州市,宁都县', 3, 'ningdu', '0797', '342800', 'N', '116.01565', '26.47227');
INSERT INTO `tb_region` VALUES (1319, 1306, '于都', '于都县', '中国,江西省,赣州市,于都县', 3, 'yudu', '0797', '342300', 'Y', '115.41415', '25.95257');
INSERT INTO `tb_region` VALUES (1320, 1306, '兴国', '兴国县', '中国,江西省,赣州市,兴国县', 3, 'xingguo', '0797', '342400', 'X', '115.36309', '26.33776');
INSERT INTO `tb_region` VALUES (1321, 1306, '会昌', '会昌县', '中国,江西省,赣州市,会昌县', 3, 'huichang', '0797', '342600', 'H', '115.78555', '25.60068');
INSERT INTO `tb_region` VALUES (1322, 1306, '寻乌', '寻乌县', '中国,江西省,赣州市,寻乌县', 3, 'xunwu', '0797', '342200', 'X', '115.64852', '24.95513');
INSERT INTO `tb_region` VALUES (1323, 1306, '石城', '石城县', '中国,江西省,赣州市,石城县', 3, 'shicheng', '0797', '342700', 'S', '116.3442', '26.32617');
INSERT INTO `tb_region` VALUES (1324, 1306, '瑞金', '瑞金市', '中国,江西省,赣州市,瑞金市', 3, 'ruijin', '0797', '342500', 'R', '116.02703', '25.88557');
INSERT INTO `tb_region` VALUES (1325, 1263, '吉安', '吉安市', '中国,江西省,吉安市', 2, 'ji\'an', '0796', '343000', 'J', '114.986373', '27.111699');
INSERT INTO `tb_region` VALUES (1326, 1325, '吉州', '吉州区', '中国,江西省,吉安市,吉州区', 3, 'jizhou', '0796', '343000', 'J', '114.97598', '27.10669');
INSERT INTO `tb_region` VALUES (1327, 1325, '青原', '青原区', '中国,江西省,吉安市,青原区', 3, 'qingyuan', '0796', '343009', 'Q', '115.01747', '27.10577');
INSERT INTO `tb_region` VALUES (1328, 1325, '吉安', '吉安县', '中国,江西省,吉安市,吉安县', 3, 'ji\'an', '0796', '343100', 'J', '114.90695', '27.04048');
INSERT INTO `tb_region` VALUES (1329, 1325, '吉水', '吉水县', '中国,江西省,吉安市,吉水县', 3, 'jishui', '0796', '331600', 'J', '115.1343', '27.21071');
INSERT INTO `tb_region` VALUES (1330, 1325, '峡江', '峡江县', '中国,江西省,吉安市,峡江县', 3, 'xiajiang', '0796', '331409', 'X', '115.31723', '27.576');
INSERT INTO `tb_region` VALUES (1331, 1325, '新干', '新干县', '中国,江西省,吉安市,新干县', 3, 'xingan', '0796', '331300', 'X', '115.39306', '27.74092');
INSERT INTO `tb_region` VALUES (1332, 1325, '永丰', '永丰县', '中国,江西省,吉安市,永丰县', 3, 'yongfeng', '0796', '331500', 'Y', '115.44238', '27.31785');
INSERT INTO `tb_region` VALUES (1333, 1325, '泰和', '泰和县', '中国,江西省,吉安市,泰和县', 3, 'taihe', '0796', '343700', 'T', '114.90789', '26.79113');
INSERT INTO `tb_region` VALUES (1334, 1325, '遂川', '遂川县', '中国,江西省,吉安市,遂川县', 3, 'suichuan', '0796', '343900', 'S', '114.51629', '26.32598');
INSERT INTO `tb_region` VALUES (1335, 1325, '万安', '万安县', '中国,江西省,吉安市,万安县', 3, 'wan\'an', '0796', '343800', 'W', '114.78659', '26.45931');
INSERT INTO `tb_region` VALUES (1336, 1325, '安福', '安福县', '中国,江西省,吉安市,安福县', 3, 'anfu', '0796', '343200', 'A', '114.61956', '27.39276');
INSERT INTO `tb_region` VALUES (1337, 1325, '永新', '永新县', '中国,江西省,吉安市,永新县', 3, 'yongxin', '0796', '343400', 'Y', '114.24246', '26.94488');
INSERT INTO `tb_region` VALUES (1338, 1325, '井冈山', '井冈山市', '中国,江西省,吉安市,井冈山市', 3, 'jinggangshan', '0796', '343600', 'J', '114.28949', '26.74804');
INSERT INTO `tb_region` VALUES (1339, 1263, '宜春', '宜春市', '中国,江西省,宜春市', 2, 'yichun', '0795', '336000', 'Y', '114.391136', '27.8043');
INSERT INTO `tb_region` VALUES (1340, 1339, '袁州', '袁州区', '中国,江西省,宜春市,袁州区', 3, 'yuanzhou', '0795', '336000', 'Y', '114.38246', '27.79649');
INSERT INTO `tb_region` VALUES (1341, 1339, '奉新', '奉新县', '中国,江西省,宜春市,奉新县', 3, 'fengxin', '0795', '330700', 'F', '115.40036', '28.6879');
INSERT INTO `tb_region` VALUES (1342, 1339, '万载', '万载县', '中国,江西省,宜春市,万载县', 3, 'wanzai', '0795', '336100', 'W', '114.4458', '28.10656');
INSERT INTO `tb_region` VALUES (1343, 1339, '上高', '上高县', '中国,江西省,宜春市,上高县', 3, 'shanggao', '0795', '336400', 'S', '114.92459', '28.23423');
INSERT INTO `tb_region` VALUES (1344, 1339, '宜丰', '宜丰县', '中国,江西省,宜春市,宜丰县', 3, 'yifeng', '0795', '336300', 'Y', '114.7803', '28.38555');
INSERT INTO `tb_region` VALUES (1345, 1339, '靖安', '靖安县', '中国,江西省,宜春市,靖安县', 3, 'jing\'an', '0795', '330600', 'J', '115.36279', '28.86167');
INSERT INTO `tb_region` VALUES (1346, 1339, '铜鼓', '铜鼓县', '中国,江西省,宜春市,铜鼓县', 3, 'tonggu', '0795', '336200', 'T', '114.37036', '28.52311');
INSERT INTO `tb_region` VALUES (1347, 1339, '丰城', '丰城市', '中国,江西省,宜春市,丰城市', 3, 'fengcheng', '0795', '331100', 'F', '115.77114', '28.15918');
INSERT INTO `tb_region` VALUES (1348, 1339, '樟树', '樟树市', '中国,江西省,宜春市,樟树市', 3, 'zhangshu', '0795', '331200', 'Z', '115.5465', '28.05332');
INSERT INTO `tb_region` VALUES (1349, 1339, '高安', '高安市', '中国,江西省,宜春市,高安市', 3, 'gao\'an', '0795', '330800', 'G', '115.3753', '28.4178');
INSERT INTO `tb_region` VALUES (1350, 1263, '抚州', '抚州市', '中国,江西省,抚州市', 2, 'fuzhou', '0794', '344000', 'F', '116.358351', '27.98385');
INSERT INTO `tb_region` VALUES (1351, 1350, '临川', '临川区', '中国,江西省,抚州市,临川区', 3, 'linchuan', '0794', '344000', 'L', '116.35919', '27.97721');
INSERT INTO `tb_region` VALUES (1352, 1350, '南城', '南城县', '中国,江西省,抚州市,南城县', 3, 'nancheng', '0794', '344700', 'N', '116.64419', '27.55381');
INSERT INTO `tb_region` VALUES (1353, 1350, '黎川', '黎川县', '中国,江西省,抚州市,黎川县', 3, 'lichuan', '0794', '344600', 'L', '116.90771', '27.28232');
INSERT INTO `tb_region` VALUES (1354, 1350, '南丰', '南丰县', '中国,江西省,抚州市,南丰县', 3, 'nanfeng', '0794', '344500', 'N', '116.5256', '27.21842');
INSERT INTO `tb_region` VALUES (1355, 1350, '崇仁', '崇仁县', '中国,江西省,抚州市,崇仁县', 3, 'chongren', '0794', '344200', 'C', '116.06021', '27.75962');
INSERT INTO `tb_region` VALUES (1356, 1350, '乐安', '乐安县', '中国,江西省,抚州市,乐安县', 3, 'le\'an', '0794', '344300', 'L', '115.83108', '27.42812');
INSERT INTO `tb_region` VALUES (1357, 1350, '宜黄', '宜黄县', '中国,江西省,抚州市,宜黄县', 3, 'yihuang', '0794', '344400', 'Y', '116.23626', '27.55487');
INSERT INTO `tb_region` VALUES (1358, 1350, '金溪', '金溪县', '中国,江西省,抚州市,金溪县', 3, 'jinxi', '0794', '344800', 'J', '116.77392', '27.90753');
INSERT INTO `tb_region` VALUES (1359, 1350, '资溪', '资溪县', '中国,江西省,抚州市,资溪县', 3, 'zixi', '0794', '335300', 'Z', '117.06939', '27.70493');
INSERT INTO `tb_region` VALUES (1360, 1350, '东乡', '东乡县', '中国,江西省,抚州市,东乡县', 3, 'dongxiang', '0794', '331800', 'D', '116.59039', '28.23614');
INSERT INTO `tb_region` VALUES (1361, 1350, '广昌', '广昌县', '中国,江西省,抚州市,广昌县', 3, 'guangchang', '0794', '344900', 'G', '116.32547', '26.8341');
INSERT INTO `tb_region` VALUES (1362, 1263, '上饶', '上饶市', '中国,江西省,上饶市', 2, 'shangrao', '0793', '334000', 'S', '117.971185', '28.44442');
INSERT INTO `tb_region` VALUES (1363, 1362, '信州', '信州区', '中国,江西省,上饶市,信州区', 3, 'xinzhou', '0793', '334000', 'X', '117.96682', '28.43121');
INSERT INTO `tb_region` VALUES (1364, 1362, '上饶', '上饶县', '中国,江西省,上饶市,上饶县', 3, 'shangrao', '0793', '334100', 'S', '117.90884', '28.44856');
INSERT INTO `tb_region` VALUES (1365, 1362, '广丰', '广丰县', '中国,江西省,上饶市,广丰县', 3, 'guangfeng', '0793', '334600', 'G', '118.19158', '28.43766');
INSERT INTO `tb_region` VALUES (1366, 1362, '玉山', '玉山县', '中国,江西省,上饶市,玉山县', 3, 'yushan', '0793', '334700', 'Y', '118.24462', '28.6818');
INSERT INTO `tb_region` VALUES (1367, 1362, '铅山', '铅山县', '中国,江西省,上饶市,铅山县', 3, 'yanshan', '0793', '334500', 'Q', '117.70996', '28.31549');
INSERT INTO `tb_region` VALUES (1368, 1362, '横峰', '横峰县', '中国,江西省,上饶市,横峰县', 3, 'hengfeng', '0793', '334300', 'H', '117.5964', '28.40716');
INSERT INTO `tb_region` VALUES (1369, 1362, '弋阳', '弋阳县', '中国,江西省,上饶市,弋阳县', 3, 'yiyang', '0793', '334400', 'Y', '117.45929', '28.37451');
INSERT INTO `tb_region` VALUES (1370, 1362, '余干', '余干县', '中国,江西省,上饶市,余干县', 3, 'yugan', '0793', '335100', 'Y', '116.69555', '28.70206');
INSERT INTO `tb_region` VALUES (1371, 1362, '鄱阳', '鄱阳县', '中国,江西省,上饶市,鄱阳县', 3, 'poyang', '0793', '333100', 'P', '116.69967', '29.0118');
INSERT INTO `tb_region` VALUES (1372, 1362, '万年', '万年县', '中国,江西省,上饶市,万年县', 3, 'wannian', '0793', '335500', 'W', '117.06884', '28.69537');
INSERT INTO `tb_region` VALUES (1373, 1362, '婺源', '婺源县', '中国,江西省,上饶市,婺源县', 3, 'wuyuan', '0793', '333200', 'W', '117.86105', '29.24841');
INSERT INTO `tb_region` VALUES (1374, 1362, '德兴', '德兴市', '中国,江西省,上饶市,德兴市', 3, 'dexing', '0793', '334200', 'D', '117.57919', '28.94736');
INSERT INTO `tb_region` VALUES (1375, 0, '山东', '山东省', '中国,山东省', 1, 'shandong', '', '', 'S', '117.000923', '36.675807');
INSERT INTO `tb_region` VALUES (1376, 1375, '济南', '济南市', '中国,山东省,济南市', 2, 'jinan', '0531', '250001', 'J', '117.000923', '36.675807');
INSERT INTO `tb_region` VALUES (1377, 1376, '历下', '历下区', '中国,山东省,济南市,历下区', 3, 'lixia', '0531', '250014', 'L', '117.0768', '36.66661');
INSERT INTO `tb_region` VALUES (1378, 1376, '市中区', '市中区', '中国,山东省,济南市,市中区', 3, 'shizhongqu', '0531', '250001', 'S', '116.99741', '36.65101');
INSERT INTO `tb_region` VALUES (1379, 1376, '槐荫', '槐荫区', '中国,山东省,济南市,槐荫区', 3, 'huaiyin', '0531', '250117', 'H', '116.90075', '36.65136');
INSERT INTO `tb_region` VALUES (1380, 1376, '天桥', '天桥区', '中国,山东省,济南市,天桥区', 3, 'tianqiao', '0531', '250031', 'T', '116.98749', '36.67801');
INSERT INTO `tb_region` VALUES (1381, 1376, '历城', '历城区', '中国,山东省,济南市,历城区', 3, 'licheng', '0531', '250100', 'L', '117.06509', '36.67995');
INSERT INTO `tb_region` VALUES (1382, 1376, '长清', '长清区', '中国,山东省,济南市,长清区', 3, 'changqing', '0531', '250300', 'C', '116.75192', '36.55352');
INSERT INTO `tb_region` VALUES (1383, 1376, '平阴', '平阴县', '中国,山东省,济南市,平阴县', 3, 'pingyin', '0531', '250400', 'P', '116.45587', '36.28955');
INSERT INTO `tb_region` VALUES (1384, 1376, '济阳', '济阳县', '中国,山东省,济南市,济阳县', 3, 'jiyang', '0531', '251400', 'J', '117.17327', '36.97845');
INSERT INTO `tb_region` VALUES (1385, 1376, '商河', '商河县', '中国,山东省,济南市,商河县', 3, 'shanghe', '0531', '251600', 'S', '117.15722', '37.31119');
INSERT INTO `tb_region` VALUES (1386, 1376, '章丘', '章丘市', '中国,山东省,济南市,章丘市', 3, 'zhangqiu', '0531', '250200', 'Z', '117.53677', '36.71392');
INSERT INTO `tb_region` VALUES (1387, 1375, '青岛', '青岛市', '中国,山东省,青岛市', 2, 'qingdao', '0532', '266001', 'Q', '120.369557', '36.094406');
INSERT INTO `tb_region` VALUES (1388, 1387, '市南', '市南区', '中国,山东省,青岛市,市南区', 3, 'shinan', '0532', '266001', 'S', '120.38773', '36.06671');
INSERT INTO `tb_region` VALUES (1389, 1387, '市北', '市北区', '中国,山东省,青岛市,市北区', 3, 'shibei', '0532', '266011', 'S', '120.37469', '36.08734');
INSERT INTO `tb_region` VALUES (1390, 1387, '黄岛', '黄岛区', '中国,山东省,青岛市,黄岛区', 3, 'huangdao', '0532', '266500', 'H', '120.19775', '35.96065');
INSERT INTO `tb_region` VALUES (1391, 1387, '崂山', '崂山区', '中国,山东省,青岛市,崂山区', 3, 'laoshan', '0532', '266100', 'L', '120.46923', '36.10717');
INSERT INTO `tb_region` VALUES (1392, 1387, '李沧', '李沧区', '中国,山东省,青岛市,李沧区', 3, 'licang', '0532', '266021', 'L', '120.43286', '36.14502');
INSERT INTO `tb_region` VALUES (1393, 1387, '城阳', '城阳区', '中国,山东省,青岛市,城阳区', 3, 'chengyang', '0532', '266041', 'C', '120.39621', '36.30735');
INSERT INTO `tb_region` VALUES (1394, 1387, '胶州', '胶州市', '中国,山东省,青岛市,胶州市', 3, 'jiaozhou', '0532', '266300', 'J', '120.0335', '36.26442');
INSERT INTO `tb_region` VALUES (1395, 1387, '即墨', '即墨市', '中国,山东省,青岛市,即墨市', 3, 'jimo', '0532', '266200', 'J', '120.44699', '36.38907');
INSERT INTO `tb_region` VALUES (1396, 1387, '平度', '平度市', '中国,山东省,青岛市,平度市', 3, 'pingdu', '0532', '266700', 'P', '119.95996', '36.78688');
INSERT INTO `tb_region` VALUES (1397, 1387, '莱西', '莱西市', '中国,山东省,青岛市,莱西市', 3, 'laixi', '0532', '266600', 'L', '120.51773', '36.88804');
INSERT INTO `tb_region` VALUES (1398, 1387, '西海岸', '西海岸新区', '中国,山东省,青岛市,西海岸新区', 3, 'xihai\'an', '0532', '266500', 'X', '120.19775', '35.96065');
INSERT INTO `tb_region` VALUES (1399, 1375, '淄博', '淄博市', '中国,山东省,淄博市', 2, 'zibo', '0533', '255039', 'Z', '118.047648', '36.814939');
INSERT INTO `tb_region` VALUES (1400, 1399, '淄川', '淄川区', '中国,山东省,淄博市,淄川区', 3, 'zichuan', '0533', '255100', 'Z', '117.96655', '36.64339');
INSERT INTO `tb_region` VALUES (1401, 1399, '张店', '张店区', '中国,山东省,淄博市,张店区', 3, 'zhangdian', '0533', '255022', 'Z', '118.01788', '36.80676');
INSERT INTO `tb_region` VALUES (1402, 1399, '博山', '博山区', '中国,山东省,淄博市,博山区', 3, 'boshan', '0533', '255200', 'B', '117.86166', '36.49469');
INSERT INTO `tb_region` VALUES (1403, 1399, '临淄', '临淄区', '中国,山东省,淄博市,临淄区', 3, 'linzi', '0533', '255400', 'L', '118.30966', '36.8259');
INSERT INTO `tb_region` VALUES (1404, 1399, '周村', '周村区', '中国,山东省,淄博市,周村区', 3, 'zhoucun', '0533', '255300', 'Z', '117.86969', '36.80322');
INSERT INTO `tb_region` VALUES (1405, 1399, '桓台', '桓台县', '中国,山东省,淄博市,桓台县', 3, 'huantai', '0533', '256400', 'H', '118.09698', '36.96036');
INSERT INTO `tb_region` VALUES (1406, 1399, '高青', '高青县', '中国,山东省,淄博市,高青县', 3, 'gaoqing', '0533', '256300', 'G', '117.82708', '37.17197');
INSERT INTO `tb_region` VALUES (1407, 1399, '沂源', '沂源县', '中国,山东省,淄博市,沂源县', 3, 'yiyuan', '0533', '256100', 'Y', '118.17105', '36.18536');
INSERT INTO `tb_region` VALUES (1408, 1375, '枣庄', '枣庄市', '中国,山东省,枣庄市', 2, 'zaozhuang', '0632', '277101', 'Z', '117.557964', '34.856424');
INSERT INTO `tb_region` VALUES (1409, 1408, '市中区', '市中区', '中国,山东省,枣庄市,市中区', 3, 'shizhongqu', '0632', '277101', 'S', '117.55603', '34.86391');
INSERT INTO `tb_region` VALUES (1410, 1408, '薛城', '薛城区', '中国,山东省,枣庄市,薛城区', 3, 'xuecheng', '0632', '277000', 'X', '117.26318', '34.79498');
INSERT INTO `tb_region` VALUES (1411, 1408, '峄城', '峄城区', '中国,山东省,枣庄市,峄城区', 3, 'yicheng', '0632', '277300', 'Y', '117.59057', '34.77225');
INSERT INTO `tb_region` VALUES (1412, 1408, '台儿庄', '台儿庄区', '中国,山东省,枣庄市,台儿庄区', 3, 'taierzhuang', '0632', '277400', 'T', '117.73452', '34.56363');
INSERT INTO `tb_region` VALUES (1413, 1408, '山亭', '山亭区', '中国,山东省,枣庄市,山亭区', 3, 'shanting', '0632', '277200', 'S', '117.4663', '35.09541');
INSERT INTO `tb_region` VALUES (1414, 1408, '滕州', '滕州市', '中国,山东省,枣庄市,滕州市', 3, 'tengzhou', '0632', '277500', 'T', '117.165', '35.10534');
INSERT INTO `tb_region` VALUES (1415, 1375, '东营', '东营市', '中国,山东省,东营市', 2, 'dongying', '0546', '257093', 'D', '118.4963', '37.461266');
INSERT INTO `tb_region` VALUES (1416, 1415, '东营', '东营区', '中国,山东省,东营市,东营区', 3, 'dongying', '0546', '257029', 'D', '118.5816', '37.44875');
INSERT INTO `tb_region` VALUES (1417, 1415, '河口', '河口区', '中国,山东省,东营市,河口区', 3, 'hekou', '0546', '257200', 'H', '118.5249', '37.88541');
INSERT INTO `tb_region` VALUES (1418, 1415, '垦利', '垦利县', '中国,山东省,东营市,垦利县', 3, 'kenli', '0546', '257500', 'K', '118.54815', '37.58825');
INSERT INTO `tb_region` VALUES (1419, 1415, '利津', '利津县', '中国,山东省,东营市,利津县', 3, 'lijin', '0546', '257400', 'L', '118.25637', '37.49157');
INSERT INTO `tb_region` VALUES (1420, 1415, '广饶', '广饶县', '中国,山东省,东营市,广饶县', 3, 'guangrao', '0546', '257300', 'G', '118.40704', '37.05381');
INSERT INTO `tb_region` VALUES (1421, 1375, '烟台', '烟台市', '中国,山东省,烟台市', 2, 'yantai', '0635', '264010', 'Y', '121.391382', '37.539297');
INSERT INTO `tb_region` VALUES (1422, 1421, '芝罘', '芝罘区', '中国,山东省,烟台市,芝罘区', 3, 'zhifu', '0635', '264001', 'Z', '121.40023', '37.54064');
INSERT INTO `tb_region` VALUES (1423, 1421, '福山', '福山区', '中国,山东省,烟台市,福山区', 3, 'fushan', '0635', '265500', 'F', '121.26812', '37.49841');
INSERT INTO `tb_region` VALUES (1424, 1421, '牟平', '牟平区', '中国,山东省,烟台市,牟平区', 3, 'muping', '0635', '264100', 'M', '121.60067', '37.38846');
INSERT INTO `tb_region` VALUES (1425, 1421, '莱山', '莱山区', '中国,山东省,烟台市,莱山区', 3, 'laishan', '0635', '264600', 'L', '121.44512', '37.51165');
INSERT INTO `tb_region` VALUES (1426, 1421, '长岛', '长岛县', '中国,山东省,烟台市,长岛县', 3, 'changdao', '0635', '265800', 'C', '120.738', '37.91754');
INSERT INTO `tb_region` VALUES (1427, 1421, '龙口', '龙口市', '中国,山东省,烟台市,龙口市', 3, 'longkou', '0635', '265700', 'L', '120.50634', '37.64064');
INSERT INTO `tb_region` VALUES (1428, 1421, '莱阳', '莱阳市', '中国,山东省,烟台市,莱阳市', 3, 'laiyang', '0635', '265200', 'L', '120.71066', '36.98012');
INSERT INTO `tb_region` VALUES (1429, 1421, '莱州', '莱州市', '中国,山东省,烟台市,莱州市', 3, 'laizhou', '0635', '261400', 'L', '119.94137', '37.17806');
INSERT INTO `tb_region` VALUES (1430, 1421, '蓬莱', '蓬莱市', '中国,山东省,烟台市,蓬莱市', 3, 'penglai', '0635', '265600', 'P', '120.75988', '37.81119');
INSERT INTO `tb_region` VALUES (1431, 1421, '招远', '招远市', '中国,山东省,烟台市,招远市', 3, 'zhaoyuan', '0635', '265400', 'Z', '120.40481', '37.36269');
INSERT INTO `tb_region` VALUES (1432, 1421, '栖霞', '栖霞市', '中国,山东省,烟台市,栖霞市', 3, 'qixia', '0635', '265300', 'Q', '120.85025', '37.33571');
INSERT INTO `tb_region` VALUES (1433, 1421, '海阳', '海阳市', '中国,山东省,烟台市,海阳市', 3, 'haiyang', '0635', '265100', 'H', '121.15976', '36.77622');
INSERT INTO `tb_region` VALUES (1434, 1375, '潍坊', '潍坊市', '中国,山东省,潍坊市', 2, 'weifang', '0536', '261041', 'W', '119.107078', '36.70925');
INSERT INTO `tb_region` VALUES (1435, 1434, '潍城', '潍城区', '中国,山东省,潍坊市,潍城区', 3, 'weicheng', '0536', '261021', 'W', '119.10582', '36.7139');
INSERT INTO `tb_region` VALUES (1436, 1434, '寒亭', '寒亭区', '中国,山东省,潍坊市,寒亭区', 3, 'hanting', '0536', '261100', 'H', '119.21832', '36.77504');
INSERT INTO `tb_region` VALUES (1437, 1434, '坊子', '坊子区', '中国,山东省,潍坊市,坊子区', 3, 'fangzi', '0536', '261200', 'F', '119.16476', '36.65218');
INSERT INTO `tb_region` VALUES (1438, 1434, '奎文', '奎文区', '中国,山东省,潍坊市,奎文区', 3, 'kuiwen', '0536', '261031', 'K', '119.12532', '36.70723');
INSERT INTO `tb_region` VALUES (1439, 1434, '临朐', '临朐县', '中国,山东省,潍坊市,临朐县', 3, 'linqu', '0536', '262600', 'L', '118.544', '36.51216');
INSERT INTO `tb_region` VALUES (1440, 1434, '昌乐', '昌乐县', '中国,山东省,潍坊市,昌乐县', 3, 'changle', '0536', '262400', 'C', '118.83017', '36.7078');
INSERT INTO `tb_region` VALUES (1441, 1434, '青州', '青州市', '中国,山东省,潍坊市,青州市', 3, 'qingzhou', '0536', '262500', 'Q', '118.47915', '36.68505');
INSERT INTO `tb_region` VALUES (1442, 1434, '诸城', '诸城市', '中国,山东省,潍坊市,诸城市', 3, 'zhucheng', '0536', '262200', 'Z', '119.40988', '35.99662');
INSERT INTO `tb_region` VALUES (1443, 1434, '寿光', '寿光市', '中国,山东省,潍坊市,寿光市', 3, 'shouguang', '0536', '262700', 'S', '118.74047', '36.88128');
INSERT INTO `tb_region` VALUES (1444, 1434, '安丘', '安丘市', '中国,山东省,潍坊市,安丘市', 3, 'anqiu', '0536', '262100', 'A', '119.2189', '36.47847');
INSERT INTO `tb_region` VALUES (1445, 1434, '高密', '高密市', '中国,山东省,潍坊市,高密市', 3, 'gaomi', '0536', '261500', 'G', '119.75701', '36.38397');
INSERT INTO `tb_region` VALUES (1446, 1434, '昌邑', '昌邑市', '中国,山东省,潍坊市,昌邑市', 3, 'changyi', '0536', '261300', 'C', '119.39767', '36.86008');
INSERT INTO `tb_region` VALUES (1447, 1375, '济宁', '济宁市', '中国,山东省,济宁市', 2, 'jining', '0537', '272119', 'J', '116.587245', '35.415393');
INSERT INTO `tb_region` VALUES (1448, 1447, '任城', '任城区', '中国,山东省,济宁市,任城区', 3, 'rencheng', '0537', '272113', 'R', '116.59504', '35.40659');
INSERT INTO `tb_region` VALUES (1449, 1447, '兖州', '兖州区', '中国,山东省,济宁市,兖州区', 3, 'yanzhou', '0537', '272000', 'Y', '116.826546', '35.552305');
INSERT INTO `tb_region` VALUES (1450, 1447, '微山', '微山县', '中国,山东省,济宁市,微山县', 3, 'weishan', '0537', '277600', 'W', '117.12875', '34.80712');
INSERT INTO `tb_region` VALUES (1451, 1447, '鱼台', '鱼台县', '中国,山东省,济宁市,鱼台县', 3, 'yutai', '0537', '272300', 'Y', '116.64761', '34.99674');
INSERT INTO `tb_region` VALUES (1452, 1447, '金乡', '金乡县', '中国,山东省,济宁市,金乡县', 3, 'jinxiang', '0537', '272200', 'J', '116.31146', '35.065');
INSERT INTO `tb_region` VALUES (1453, 1447, '嘉祥', '嘉祥县', '中国,山东省,济宁市,嘉祥县', 3, 'jiaxiang', '0537', '272400', 'J', '116.34249', '35.40836');
INSERT INTO `tb_region` VALUES (1454, 1447, '汶上', '汶上县', '中国,山东省,济宁市,汶上县', 3, 'wenshang', '0537', '272501', 'W', '116.48742', '35.73295');
INSERT INTO `tb_region` VALUES (1455, 1447, '泗水', '泗水县', '中国,山东省,济宁市,泗水县', 3, 'sishui', '0537', '273200', 'S', '117.27948', '35.66113');
INSERT INTO `tb_region` VALUES (1456, 1447, '梁山', '梁山县', '中国,山东省,济宁市,梁山县', 3, 'liangshan', '0537', '272600', 'L', '116.09683', '35.80322');
INSERT INTO `tb_region` VALUES (1457, 1447, '曲阜', '曲阜市', '中国,山东省,济宁市,曲阜市', 3, 'qufu', '0537', '273100', 'Q', '116.98645', '35.58091');
INSERT INTO `tb_region` VALUES (1458, 1447, '邹城', '邹城市', '中国,山东省,济宁市,邹城市', 3, 'zoucheng', '0537', '273500', 'Z', '116.97335', '35.40531');
INSERT INTO `tb_region` VALUES (1459, 1375, '泰安', '泰安市', '中国,山东省,泰安市', 2, 'tai\'an', '0538', '271000', 'T', '117.129063', '36.194968');
INSERT INTO `tb_region` VALUES (1460, 1459, '泰山', '泰山区', '中国,山东省,泰安市,泰山区', 3, 'taishan', '0538', '271000', 'T', '117.13446', '36.19411');
INSERT INTO `tb_region` VALUES (1461, 1459, '岱岳', '岱岳区', '中国,山东省,泰安市,岱岳区', 3, 'daiyue', '0538', '271000', 'D', '117.04174', '36.1875');
INSERT INTO `tb_region` VALUES (1462, 1459, '宁阳', '宁阳县', '中国,山东省,泰安市,宁阳县', 3, 'ningyang', '0538', '271400', 'N', '116.80542', '35.7599');
INSERT INTO `tb_region` VALUES (1463, 1459, '东平', '东平县', '中国,山东省,泰安市,东平县', 3, 'dongping', '0538', '271500', 'D', '116.47113', '35.93792');
INSERT INTO `tb_region` VALUES (1464, 1459, '新泰', '新泰市', '中国,山东省,泰安市,新泰市', 3, 'xintai', '0538', '271200', 'X', '117.76959', '35.90887');
INSERT INTO `tb_region` VALUES (1465, 1459, '肥城', '肥城市', '中国,山东省,泰安市,肥城市', 3, 'feicheng', '0538', '271600', 'F', '116.76815', '36.18247');
INSERT INTO `tb_region` VALUES (1466, 1375, '威海', '威海市', '中国,山东省,威海市', 2, 'weihai', '0631', '264200', 'W', '122.116394', '37.509691');
INSERT INTO `tb_region` VALUES (1467, 1466, '环翠', '环翠区', '中国,山东省,威海市,环翠区', 3, 'huancui', '0631', '264200', 'H', '122.12344', '37.50199');
INSERT INTO `tb_region` VALUES (1468, 1466, '文登', '文登区', '中国,山东省,威海市,文登区', 3, 'wendeng', '0631', '266440', 'W', '122.057139', '37.196211');
INSERT INTO `tb_region` VALUES (1469, 1466, '荣成', '荣成市', '中国,山东省,威海市,荣成市', 3, 'rongcheng', '0631', '264300', 'R', '122.48773', '37.1652');
INSERT INTO `tb_region` VALUES (1470, 1466, '乳山', '乳山市', '中国,山东省,威海市,乳山市', 3, 'rushan', '0631', '264500', 'R', '121.53814', '36.91918');
INSERT INTO `tb_region` VALUES (1471, 1375, '日照', '日照市', '中国,山东省,日照市', 2, 'rizhao', '0633', '276800', 'R', '119.461208', '35.428588');
INSERT INTO `tb_region` VALUES (1472, 1471, '东港', '东港区', '中国,山东省,日照市,东港区', 3, 'donggang', '0633', '276800', 'D', '119.46237', '35.42541');
INSERT INTO `tb_region` VALUES (1473, 1471, '岚山', '岚山区', '中国,山东省,日照市,岚山区', 3, 'lanshan', '0633', '276808', 'L', '119.31884', '35.12203');
INSERT INTO `tb_region` VALUES (1474, 1471, '五莲', '五莲县', '中国,山东省,日照市,五莲县', 3, 'wulian', '0633', '262300', 'W', '119.207', '35.75004');
INSERT INTO `tb_region` VALUES (1475, 1471, '莒县', '莒县', '中国,山东省,日照市,莒县', 3, 'juxian', '0633', '276500', 'J', '118.83789', '35.58054');
INSERT INTO `tb_region` VALUES (1476, 1375, '莱芜', '莱芜市', '中国,山东省,莱芜市', 2, 'laiwu', '0634', '271100', 'L', '117.677736', '36.214397');
INSERT INTO `tb_region` VALUES (1477, 1476, '莱城', '莱城区', '中国,山东省,莱芜市,莱城区', 3, 'laicheng', '0634', '271199', 'L', '117.65986', '36.2032');
INSERT INTO `tb_region` VALUES (1478, 1476, '钢城', '钢城区', '中国,山东省,莱芜市,钢城区', 3, 'gangcheng', '0634', '271100', 'G', '117.8049', '36.06319');
INSERT INTO `tb_region` VALUES (1479, 1375, '临沂', '临沂市', '中国,山东省,临沂市', 2, 'linyi', '0539', '253000', 'L', '118.326443', '35.065282');
INSERT INTO `tb_region` VALUES (1480, 1479, '兰山', '兰山区', '中国,山东省,临沂市,兰山区', 3, 'lanshan', '0539', '276002', 'L', '118.34817', '35.06872');
INSERT INTO `tb_region` VALUES (1481, 1479, '罗庄', '罗庄区', '中国,山东省,临沂市,罗庄区', 3, 'luozhuang', '0539', '276022', 'L', '118.28466', '34.99627');
INSERT INTO `tb_region` VALUES (1482, 1479, '河东', '河东区', '中国,山东省,临沂市,河东区', 3, 'hedong', '0539', '276034', 'H', '118.41055', '35.08803');
INSERT INTO `tb_region` VALUES (1483, 1479, '沂南', '沂南县', '中国,山东省,临沂市,沂南县', 3, 'yinan', '0539', '276300', 'Y', '118.47061', '35.55131');
INSERT INTO `tb_region` VALUES (1484, 1479, '郯城', '郯城县', '中国,山东省,临沂市,郯城县', 3, 'tancheng', '0539', '276100', 'T', '118.36712', '34.61354');
INSERT INTO `tb_region` VALUES (1485, 1479, '沂水', '沂水县', '中国,山东省,临沂市,沂水县', 3, 'yishui', '0539', '276400', 'Y', '118.63009', '35.78731');
INSERT INTO `tb_region` VALUES (1486, 1479, '兰陵', '兰陵县', '中国,山东省,临沂市,兰陵县', 3, 'lanling', '0539', '277700', 'L', '117.856592', '34.738315');
INSERT INTO `tb_region` VALUES (1487, 1479, '费县', '费县', '中国,山东省,临沂市,费县', 3, 'feixian', '0539', '273400', 'F', '117.97836', '35.26562');
INSERT INTO `tb_region` VALUES (1488, 1479, '平邑', '平邑县', '中国,山东省,临沂市,平邑县', 3, 'pingyi', '0539', '273300', 'P', '117.63867', '35.50573');
INSERT INTO `tb_region` VALUES (1489, 1479, '莒南', '莒南县', '中国,山东省,临沂市,莒南县', 3, 'junan', '0539', '276600', 'J', '118.83227', '35.17539');
INSERT INTO `tb_region` VALUES (1490, 1479, '蒙阴', '蒙阴县', '中国,山东省,临沂市,蒙阴县', 3, 'mengyin', '0539', '276200', 'M', '117.94592', '35.70996');
INSERT INTO `tb_region` VALUES (1491, 1479, '临沭', '临沭县', '中国,山东省,临沂市,临沭县', 3, 'linshu', '0539', '276700', 'L', '118.65267', '34.92091');
INSERT INTO `tb_region` VALUES (1492, 1375, '德州', '德州市', '中国,山东省,德州市', 2, 'dezhou', '0534', '253000', 'D', '116.307428', '37.453968');
INSERT INTO `tb_region` VALUES (1493, 1492, '德城', '德城区', '中国,山东省,德州市,德城区', 3, 'decheng', '0534', '253012', 'D', '116.29943', '37.45126');
INSERT INTO `tb_region` VALUES (1494, 1492, '陵城', '陵城区', '中国,山东省,德州市,陵城区', 3, 'lingcheng', '0534', '253500', 'L', '116.57601', '37.33571');
INSERT INTO `tb_region` VALUES (1495, 1492, '宁津', '宁津县', '中国,山东省,德州市,宁津县', 3, 'ningjin', '0534', '253400', 'N', '116.79702', '37.65301');
INSERT INTO `tb_region` VALUES (1496, 1492, '庆云', '庆云县', '中国,山东省,德州市,庆云县', 3, 'qingyun', '0534', '253700', 'Q', '117.38635', '37.77616');
INSERT INTO `tb_region` VALUES (1497, 1492, '临邑', '临邑县', '中国,山东省,德州市,临邑县', 3, 'linyi', '0534', '251500', 'L', '116.86547', '37.19053');
INSERT INTO `tb_region` VALUES (1498, 1492, '齐河', '齐河县', '中国,山东省,德州市,齐河县', 3, 'qihe', '0534', '251100', 'Q', '116.75515', '36.79532');
INSERT INTO `tb_region` VALUES (1499, 1492, '平原', '平原县', '中国,山东省,德州市,平原县', 3, 'pingyuan', '0534', '253100', 'P', '116.43432', '37.16632');
INSERT INTO `tb_region` VALUES (1500, 1492, '夏津', '夏津县', '中国,山东省,德州市,夏津县', 3, 'xiajin', '0534', '253200', 'X', '116.0017', '36.94852');
INSERT INTO `tb_region` VALUES (1501, 1492, '武城', '武城县', '中国,山东省,德州市,武城县', 3, 'wucheng', '0534', '253300', 'W', '116.07009', '37.21403');
INSERT INTO `tb_region` VALUES (1502, 1492, '乐陵', '乐陵市', '中国,山东省,德州市,乐陵市', 3, 'leling', '0534', '253600', 'L', '117.23141', '37.73164');
INSERT INTO `tb_region` VALUES (1503, 1492, '禹城', '禹城市', '中国,山东省,德州市,禹城市', 3, 'yucheng', '0534', '251200', 'Y', '116.64309', '36.93444');
INSERT INTO `tb_region` VALUES (1504, 1375, '聊城', '聊城市', '中国,山东省,聊城市', 2, 'liaocheng', '0635', '252052', 'L', '115.980367', '36.456013');
INSERT INTO `tb_region` VALUES (1505, 1504, '东昌府', '东昌府区', '中国,山东省,聊城市,东昌府区', 3, 'dongchangfu', '0635', '252000', 'D', '115.97383', '36.44458');
INSERT INTO `tb_region` VALUES (1506, 1504, '阳谷', '阳谷县', '中国,山东省,聊城市,阳谷县', 3, 'yanggu', '0635', '252300', 'Y', '115.79126', '36.11444');
INSERT INTO `tb_region` VALUES (1507, 1504, '莘县', '莘县', '中国,山东省,聊城市,莘县', 3, 'shenxian', '0635', '252400', 'S', '115.6697', '36.23423');
INSERT INTO `tb_region` VALUES (1508, 1504, '茌平', '茌平县', '中国,山东省,聊城市,茌平县', 3, 'chiping', '0635', '252100', 'C', '116.25491', '36.57969');
INSERT INTO `tb_region` VALUES (1509, 1504, '东阿', '东阿县', '中国,山东省,聊城市,东阿县', 3, 'dong\'e', '0635', '252200', 'D', '116.25012', '36.33209');
INSERT INTO `tb_region` VALUES (1510, 1504, '冠县', '冠县', '中国,山东省,聊城市,冠县', 3, 'guanxian', '0635', '252500', 'G', '115.44195', '36.48429');
INSERT INTO `tb_region` VALUES (1511, 1504, '高唐', '高唐县', '中国,山东省,聊城市,高唐县', 3, 'gaotang', '0635', '252800', 'G', '116.23172', '36.86535');
INSERT INTO `tb_region` VALUES (1512, 1504, '临清', '临清市', '中国,山东省,聊城市,临清市', 3, 'linqing', '0635', '252600', 'L', '115.70629', '36.83945');
INSERT INTO `tb_region` VALUES (1513, 1375, '滨州', '滨州市', '中国,山东省,滨州市', 2, 'binzhou', '0543', '256619', 'B', '118.016974', '37.383542');
INSERT INTO `tb_region` VALUES (1514, 1513, '滨城', '滨城区', '中国,山东省,滨州市,滨城区', 3, 'bincheng', '0543', '256613', 'B', '118.02026', '37.38524');
INSERT INTO `tb_region` VALUES (1515, 1513, '沾化', '沾化区', '中国,山东省,滨州市,沾化区', 3, 'zhanhua', '0543', '256800', 'Z', '118.13214', '37.69832');
INSERT INTO `tb_region` VALUES (1516, 1513, '惠民', '惠民县', '中国,山东省,滨州市,惠民县', 3, 'huimin', '0543', '251700', 'H', '117.51113', '37.49013');
INSERT INTO `tb_region` VALUES (1517, 1513, '阳信', '阳信县', '中国,山东省,滨州市,阳信县', 3, 'yangxin', '0543', '251800', 'Y', '117.58139', '37.64198');
INSERT INTO `tb_region` VALUES (1518, 1513, '无棣', '无棣县', '中国,山东省,滨州市,无棣县', 3, 'wudi', '0543', '251900', 'W', '117.61395', '37.74009');
INSERT INTO `tb_region` VALUES (1519, 1513, '博兴', '博兴县', '中国,山东省,滨州市,博兴县', 3, 'boxing', '0543', '256500', 'B', '118.1336', '37.14316');
INSERT INTO `tb_region` VALUES (1520, 1513, '邹平', '邹平县', '中国,山东省,滨州市,邹平县', 3, 'zouping', '0543', '256200', 'Z', '117.74307', '36.86295');
INSERT INTO `tb_region` VALUES (1521, 1513, '北海新区', '北海新区', '中国,山东省,滨州市,北海新区', 3, 'beihaixinqu', '0543', '256200', 'B', '118.016974', '37.383542');
INSERT INTO `tb_region` VALUES (1522, 1375, '菏泽', '菏泽市', '中国,山东省,菏泽市', 2, 'heze', '0530', '274020', 'H', '115.469381', '35.246531');
INSERT INTO `tb_region` VALUES (1523, 1522, '牡丹', '牡丹区', '中国,山东省,菏泽市,牡丹区', 3, 'mudan', '0530', '274009', 'M', '115.41662', '35.25091');
INSERT INTO `tb_region` VALUES (1524, 1522, '曹县', '曹县', '中国,山东省,菏泽市,曹县', 3, 'caoxian', '0530', '274400', 'C', '115.54226', '34.82659');
INSERT INTO `tb_region` VALUES (1525, 1522, '单县', '单县', '中国,山东省,菏泽市,单县', 3, 'shanxian', '0530', '273700', 'D', '116.08703', '34.79514');
INSERT INTO `tb_region` VALUES (1526, 1522, '成武', '成武县', '中国,山东省,菏泽市,成武县', 3, 'chengwu', '0530', '274200', 'C', '115.8897', '34.95332');
INSERT INTO `tb_region` VALUES (1527, 1522, '巨野', '巨野县', '中国,山东省,菏泽市,巨野县', 3, 'juye', '0530', '274900', 'J', '116.09497', '35.39788');
INSERT INTO `tb_region` VALUES (1528, 1522, '郓城', '郓城县', '中国,山东省,菏泽市,郓城县', 3, 'yuncheng', '0530', '274700', 'Y', '115.94439', '35.60044');
INSERT INTO `tb_region` VALUES (1529, 1522, '鄄城', '鄄城县', '中国,山东省,菏泽市,鄄城县', 3, 'juancheng', '0530', '274600', 'J', '115.50997', '35.56412');
INSERT INTO `tb_region` VALUES (1530, 1522, '定陶', '定陶县', '中国,山东省,菏泽市,定陶县', 3, 'dingtao', '0530', '274100', 'D', '115.57287', '35.07118');
INSERT INTO `tb_region` VALUES (1531, 1522, '东明', '东明县', '中国,山东省,菏泽市,东明县', 3, 'dongming', '0530', '274500', 'D', '115.09079', '35.28906');
INSERT INTO `tb_region` VALUES (1532, 0, '河南', '河南省', '中国,河南省', 1, 'henan', '', '', 'H', '113.665412', '34.757975');
INSERT INTO `tb_region` VALUES (1533, 1532, '郑州', '郑州市', '中国,河南省,郑州市', 2, 'zhengzhou', '0371', '450000', 'Z', '113.665412', '34.757975');
INSERT INTO `tb_region` VALUES (1534, 1533, '中原', '中原区', '中国,河南省,郑州市,中原区', 3, 'zhongyuan', '0371', '450007', 'Z', '113.61333', '34.74827');
INSERT INTO `tb_region` VALUES (1535, 1533, '二七', '二七区', '中国,河南省,郑州市,二七区', 3, 'erqi', '0371', '450052', 'E', '113.63931', '34.72336');
INSERT INTO `tb_region` VALUES (1536, 1533, '管城', '管城回族区', '中国,河南省,郑州市,管城回族区', 3, 'guancheng', '0371', '450000', 'G', '113.67734', '34.75383');
INSERT INTO `tb_region` VALUES (1537, 1533, '金水', '金水区', '中国,河南省,郑州市,金水区', 3, 'jinshui', '0371', '450003', 'J', '113.66057', '34.80028');
INSERT INTO `tb_region` VALUES (1538, 1533, '上街', '上街区', '中国,河南省,郑州市,上街区', 3, 'shangjie', '0371', '450041', 'S', '113.30897', '34.80276');
INSERT INTO `tb_region` VALUES (1539, 1533, '惠济', '惠济区', '中国,河南省,郑州市,惠济区', 3, 'huiji', '0371', '450053', 'H', '113.61688', '34.86735');
INSERT INTO `tb_region` VALUES (1540, 1533, '中牟', '中牟县', '中国,河南省,郑州市,中牟县', 3, 'zhongmu', '0371', '451450', 'Z', '113.97619', '34.71899');
INSERT INTO `tb_region` VALUES (1541, 1533, '巩义', '巩义市', '中国,河南省,郑州市,巩义市', 3, 'gongyi', '0371', '451200', 'G', '113.022', '34.74794');
INSERT INTO `tb_region` VALUES (1542, 1533, '荥阳', '荥阳市', '中国,河南省,郑州市,荥阳市', 3, 'xingyang', '0371', '450100', 'X', '113.38345', '34.78759');
INSERT INTO `tb_region` VALUES (1543, 1533, '新密', '新密市', '中国,河南省,郑州市,新密市', 3, 'xinmi', '0371', '452300', 'X', '113.3869', '34.53704');
INSERT INTO `tb_region` VALUES (1544, 1533, '新郑', '新郑市', '中国,河南省,郑州市,新郑市', 3, 'xinzheng', '0371', '451100', 'X', '113.73645', '34.3955');
INSERT INTO `tb_region` VALUES (1545, 1533, '登封', '登封市', '中国,河南省,郑州市,登封市', 3, 'dengfeng', '0371', '452470', 'D', '113.05023', '34.45345');
INSERT INTO `tb_region` VALUES (1546, 1532, '开封', '开封市', '中国,河南省,开封市', 2, 'kaifeng', '0378', '475001', 'K', '114.341447', '34.797049');
INSERT INTO `tb_region` VALUES (1547, 1546, '龙亭', '龙亭区', '中国,河南省,开封市,龙亭区', 3, 'longting', '0378', '475100', 'L', '114.35484', '34.79995');
INSERT INTO `tb_region` VALUES (1548, 1546, '顺河', '顺河回族区', '中国,河南省,开封市,顺河回族区', 3, 'shunhe', '0378', '475000', 'S', '114.36123', '34.79586');
INSERT INTO `tb_region` VALUES (1549, 1546, '鼓楼', '鼓楼区', '中国,河南省,开封市,鼓楼区', 3, 'gulou', '0378', '475000', 'G', '114.35559', '34.79517');
INSERT INTO `tb_region` VALUES (1550, 1546, '禹王台', '禹王台区', '中国,河南省,开封市,禹王台区', 3, 'yuwangtai', '0378', '475003', 'Y', '114.34787', '34.77693');
INSERT INTO `tb_region` VALUES (1551, 1546, '祥符', '祥符区', '中国,河南省,开封市,祥符区', 3, 'xiangfu', '0378', '475100', 'X', '114.43859', '34.75874');
INSERT INTO `tb_region` VALUES (1552, 1546, '杞县', '杞县', '中国,河南省,开封市,杞县', 3, 'qixian', '0378', '475200', 'Q', '114.7828', '34.55033');
INSERT INTO `tb_region` VALUES (1553, 1546, '通许', '通许县', '中国,河南省,开封市,通许县', 3, 'tongxu', '0378', '475400', 'T', '114.46716', '34.47522');
INSERT INTO `tb_region` VALUES (1554, 1546, '尉氏', '尉氏县', '中国,河南省,开封市,尉氏县', 3, 'weishi', '0378', '475500', 'W', '114.19284', '34.41223');
INSERT INTO `tb_region` VALUES (1555, 1546, '兰考', '兰考县', '中国,河南省,开封市,兰考县', 3, 'lankao', '0378', '475300', 'L', '114.81961', '34.8235');
INSERT INTO `tb_region` VALUES (1556, 1532, '洛阳', '洛阳市', '中国,河南省,洛阳市', 2, 'luoyang', '0379', '471000', 'L', '112.434468', '34.663041');
INSERT INTO `tb_region` VALUES (1557, 1556, '老城', '老城区', '中国,河南省,洛阳市,老城区', 3, 'laocheng', '0379', '471002', 'L', '112.46902', '34.68364');
INSERT INTO `tb_region` VALUES (1558, 1556, '西工', '西工区', '中国,河南省,洛阳市,西工区', 3, 'xigong', '0379', '471000', 'X', '112.4371', '34.67');
INSERT INTO `tb_region` VALUES (1559, 1556, '瀍河', '瀍河回族区', '中国,河南省,洛阳市,瀍河回族区', 3, 'chanhe', '0379', '471002', 'C', '112.50018', '34.67985');
INSERT INTO `tb_region` VALUES (1560, 1556, '涧西', '涧西区', '中国,河南省,洛阳市,涧西区', 3, 'jianxi', '0379', '471003', 'J', '112.39588', '34.65823');
INSERT INTO `tb_region` VALUES (1561, 1556, '吉利', '吉利区', '中国,河南省,洛阳市,吉利区', 3, 'jili', '0379', '471012', 'J', '112.58905', '34.90088');
INSERT INTO `tb_region` VALUES (1562, 1556, '洛龙', '洛龙区', '中国,河南省,洛阳市,洛龙区', 3, 'luolong', '0379', '471000', 'L', '112.46412', '34.61866');
INSERT INTO `tb_region` VALUES (1563, 1556, '孟津', '孟津县', '中国,河南省,洛阳市,孟津县', 3, 'mengjin', '0379', '471100', 'M', '112.44351', '34.826');
INSERT INTO `tb_region` VALUES (1564, 1556, '新安', '新安县', '中国,河南省,洛阳市,新安县', 3, 'xin\'an', '0379', '471800', 'X', '112.13238', '34.72814');
INSERT INTO `tb_region` VALUES (1565, 1556, '栾川', '栾川县', '中国,河南省,洛阳市,栾川县', 3, 'luanchuan', '0379', '471500', 'L', '111.61779', '33.78576');
INSERT INTO `tb_region` VALUES (1566, 1556, '嵩县', '嵩县', '中国,河南省,洛阳市,嵩县', 3, 'songxian', '0379', '471400', 'S', '112.08526', '34.13466');
INSERT INTO `tb_region` VALUES (1567, 1556, '汝阳', '汝阳县', '中国,河南省,洛阳市,汝阳县', 3, 'ruyang', '0379', '471200', 'R', '112.47314', '34.15387');
INSERT INTO `tb_region` VALUES (1568, 1556, '宜阳', '宜阳县', '中国,河南省,洛阳市,宜阳县', 3, 'yiyang', '0379', '471600', 'Y', '112.17907', '34.51523');
INSERT INTO `tb_region` VALUES (1569, 1556, '洛宁', '洛宁县', '中国,河南省,洛阳市,洛宁县', 3, 'luoning', '0379', '471700', 'L', '111.65087', '34.38913');
INSERT INTO `tb_region` VALUES (1570, 1556, '伊川', '伊川县', '中国,河南省,洛阳市,伊川县', 3, 'yichuan', '0379', '471300', 'Y', '112.42947', '34.42205');
INSERT INTO `tb_region` VALUES (1571, 1556, '偃师', '偃师市', '中国,河南省,洛阳市,偃师市', 3, 'yanshi', '0379', '471900', 'Y', '112.7922', '34.7281');
INSERT INTO `tb_region` VALUES (1572, 1532, '平顶山', '平顶山市', '中国,河南省,平顶山市', 2, 'pingdingshan', '0375', '467000', 'P', '113.307718', '33.735241');
INSERT INTO `tb_region` VALUES (1573, 1572, '新华', '新华区', '中国,河南省,平顶山市,新华区', 3, 'xinhua', '0375', '467002', 'X', '113.29402', '33.7373');
INSERT INTO `tb_region` VALUES (1574, 1572, '卫东', '卫东区', '中国,河南省,平顶山市,卫东区', 3, 'weidong', '0375', '467021', 'W', '113.33511', '33.73472');
INSERT INTO `tb_region` VALUES (1575, 1572, '石龙', '石龙区', '中国,河南省,平顶山市,石龙区', 3, 'shilong', '0375', '467045', 'S', '112.89879', '33.89878');
INSERT INTO `tb_region` VALUES (1576, 1572, '湛河', '湛河区', '中国,河南省,平顶山市,湛河区', 3, 'zhanhe', '0375', '467000', 'Z', '113.29252', '33.7362');
INSERT INTO `tb_region` VALUES (1577, 1572, '宝丰', '宝丰县', '中国,河南省,平顶山市,宝丰县', 3, 'baofeng', '0375', '467400', 'B', '113.05493', '33.86916');
INSERT INTO `tb_region` VALUES (1578, 1572, '叶县', '叶县', '中国,河南省,平顶山市,叶县', 3, 'yexian', '0375', '467200', 'Y', '113.35104', '33.62225');
INSERT INTO `tb_region` VALUES (1579, 1572, '鲁山', '鲁山县', '中国,河南省,平顶山市,鲁山县', 3, 'lushan', '0375', '467300', 'L', '112.9057', '33.73879');
INSERT INTO `tb_region` VALUES (1580, 1572, '郏县', '郏县', '中国,河南省,平顶山市,郏县', 3, 'jiaxian', '0375', '467100', 'J', '113.21588', '33.97072');
INSERT INTO `tb_region` VALUES (1581, 1572, '舞钢', '舞钢市', '中国,河南省,平顶山市,舞钢市', 3, 'wugang', '0375', '462500', 'W', '113.52417', '33.2938');
INSERT INTO `tb_region` VALUES (1582, 1572, '汝州', '汝州市', '中国,河南省,平顶山市,汝州市', 3, 'ruzhou', '0375', '467500', 'R', '112.84301', '34.16135');
INSERT INTO `tb_region` VALUES (1583, 1532, '安阳', '安阳市', '中国,河南省,安阳市', 2, 'anyang', '0372', '455000', 'A', '114.352482', '36.103442');
INSERT INTO `tb_region` VALUES (1584, 1583, '文峰', '文峰区', '中国,河南省,安阳市,文峰区', 3, 'wenfeng', '0372', '455000', 'W', '114.35708', '36.09046');
INSERT INTO `tb_region` VALUES (1585, 1583, '北关', '北关区', '中国,河南省,安阳市,北关区', 3, 'beiguan', '0372', '455001', 'B', '114.35735', '36.11872');
INSERT INTO `tb_region` VALUES (1586, 1583, '殷都', '殷都区', '中国,河南省,安阳市,殷都区', 3, 'yindu', '0372', '455004', 'Y', '114.3034', '36.1099');
INSERT INTO `tb_region` VALUES (1587, 1583, '龙安', '龙安区', '中国,河南省,安阳市,龙安区', 3, 'long\'an', '0372', '455001', 'L', '114.34814', '36.11904');
INSERT INTO `tb_region` VALUES (1588, 1583, '安阳', '安阳县', '中国,河南省,安阳市,安阳县', 3, 'anyang', '0372', '455000', 'A', '114.36605', '36.06695');
INSERT INTO `tb_region` VALUES (1589, 1583, '汤阴', '汤阴县', '中国,河南省,安阳市,汤阴县', 3, 'tangyin', '0372', '456150', 'T', '114.35839', '35.92152');
INSERT INTO `tb_region` VALUES (1590, 1583, '滑县', '滑县', '中国,河南省,安阳市,滑县', 3, 'huaxian', '0372', '456400', 'H', '114.52066', '35.5807');
INSERT INTO `tb_region` VALUES (1591, 1583, '内黄', '内黄县', '中国,河南省,安阳市,内黄县', 3, 'neihuang', '0372', '456350', 'N', '114.90673', '35.95269');
INSERT INTO `tb_region` VALUES (1592, 1583, '林州', '林州市', '中国,河南省,安阳市,林州市', 3, 'linzhou', '0372', '456550', 'L', '113.81558', '36.07804');
INSERT INTO `tb_region` VALUES (1593, 1532, '鹤壁', '鹤壁市', '中国,河南省,鹤壁市', 2, 'hebi', '0392', '458030', 'H', '114.295444', '35.748236');
INSERT INTO `tb_region` VALUES (1594, 1593, '鹤山', '鹤山区', '中国,河南省,鹤壁市,鹤山区', 3, 'heshan', '0392', '458010', 'H', '114.16336', '35.95458');
INSERT INTO `tb_region` VALUES (1595, 1593, '山城', '山城区', '中国,河南省,鹤壁市,山城区', 3, 'shancheng', '0392', '458000', 'S', '114.18443', '35.89773');
INSERT INTO `tb_region` VALUES (1596, 1593, '淇滨', '淇滨区', '中国,河南省,鹤壁市,淇滨区', 3, 'qibin', '0392', '458000', 'Q', '114.29867', '35.74127');
INSERT INTO `tb_region` VALUES (1597, 1593, '浚县', '浚县', '中国,河南省,鹤壁市,浚县', 3, 'xunxian', '0392', '456250', 'J', '114.54879', '35.67085');
INSERT INTO `tb_region` VALUES (1598, 1593, '淇县', '淇县', '中国,河南省,鹤壁市,淇县', 3, 'qixian', '0392', '456750', 'Q', '114.1976', '35.60782');
INSERT INTO `tb_region` VALUES (1599, 1532, '新乡', '新乡市', '中国,河南省,新乡市', 2, 'xinxiang', '0373', '453000', 'X', '113.883991', '35.302616');
INSERT INTO `tb_region` VALUES (1600, 1599, '红旗', '红旗区', '中国,河南省,新乡市,红旗区', 3, 'hongqi', '0373', '453000', 'H', '113.87523', '35.30367');
INSERT INTO `tb_region` VALUES (1601, 1599, '卫滨', '卫滨区', '中国,河南省,新乡市,卫滨区', 3, 'weibin', '0373', '453000', 'W', '113.86578', '35.30211');
INSERT INTO `tb_region` VALUES (1602, 1599, '凤泉', '凤泉区', '中国,河南省,新乡市,凤泉区', 3, 'fengquan', '0373', '453011', 'F', '113.91507', '35.38399');
INSERT INTO `tb_region` VALUES (1603, 1599, '牧野', '牧野区', '中国,河南省,新乡市,牧野区', 3, 'muye', '0373', '453002', 'M', '113.9086', '35.3149');
INSERT INTO `tb_region` VALUES (1604, 1599, '新乡', '新乡县', '中国,河南省,新乡市,新乡县', 3, 'xinxiang', '0373', '453700', 'X', '113.80511', '35.19075');
INSERT INTO `tb_region` VALUES (1605, 1599, '获嘉', '获嘉县', '中国,河南省,新乡市,获嘉县', 3, 'huojia', '0373', '453800', 'H', '113.66159', '35.26521');
INSERT INTO `tb_region` VALUES (1606, 1599, '原阳', '原阳县', '中国,河南省,新乡市,原阳县', 3, 'yuanyang', '0373', '453500', 'Y', '113.93994', '35.06565');
INSERT INTO `tb_region` VALUES (1607, 1599, '延津', '延津县', '中国,河南省,新乡市,延津县', 3, 'yanjin', '0373', '453200', 'Y', '114.20266', '35.14327');
INSERT INTO `tb_region` VALUES (1608, 1599, '封丘', '封丘县', '中国,河南省,新乡市,封丘县', 3, 'fengqiu', '0373', '453300', 'F', '114.41915', '35.04166');
INSERT INTO `tb_region` VALUES (1609, 1599, '长垣', '长垣县', '中国,河南省,新乡市,长垣县', 3, 'changyuan', '0373', '453400', 'C', '114.66882', '35.20046');
INSERT INTO `tb_region` VALUES (1610, 1599, '卫辉', '卫辉市', '中国,河南省,新乡市,卫辉市', 3, 'weihui', '0373', '453100', 'W', '114.06454', '35.39843');
INSERT INTO `tb_region` VALUES (1611, 1599, '辉县', '辉县市', '中国,河南省,新乡市,辉县市', 3, 'huixian', '0373', '453600', 'H', '113.8067', '35.46307');
INSERT INTO `tb_region` VALUES (1612, 1532, '焦作', '焦作市', '中国,河南省,焦作市', 2, 'jiaozuo', '0391', '454002', 'J', '113.238266', '35.23904');
INSERT INTO `tb_region` VALUES (1613, 1612, '解放', '解放区', '中国,河南省,焦作市,解放区', 3, 'jiefang', '0391', '454000', 'J', '113.22933', '35.24023');
INSERT INTO `tb_region` VALUES (1614, 1612, '中站', '中站区', '中国,河南省,焦作市,中站区', 3, 'zhongzhan', '0391', '454191', 'Z', '113.18315', '35.23665');
INSERT INTO `tb_region` VALUES (1615, 1612, '马村', '马村区', '中国,河南省,焦作市,马村区', 3, 'macun', '0391', '454171', 'M', '113.3187', '35.26908');
INSERT INTO `tb_region` VALUES (1616, 1612, '山阳', '山阳区', '中国,河南省,焦作市,山阳区', 3, 'shanyang', '0391', '454002', 'S', '113.25464', '35.21436');
INSERT INTO `tb_region` VALUES (1617, 1612, '修武', '修武县', '中国,河南省,焦作市,修武县', 3, 'xiuwu', '0391', '454350', 'X', '113.44775', '35.22357');
INSERT INTO `tb_region` VALUES (1618, 1612, '博爱', '博爱县', '中国,河南省,焦作市,博爱县', 3, 'boai', '0391', '454450', 'B', '113.06698', '35.16943');
INSERT INTO `tb_region` VALUES (1619, 1612, '武陟', '武陟县', '中国,河南省,焦作市,武陟县', 3, 'wuzhi', '0391', '454950', 'W', '113.39718', '35.09505');
INSERT INTO `tb_region` VALUES (1620, 1612, '温县', '温县', '中国,河南省,焦作市,温县', 3, 'wenxian', '0391', '454850', 'W', '113.08065', '34.94022');
INSERT INTO `tb_region` VALUES (1621, 1612, '沁阳', '沁阳市', '中国,河南省,焦作市,沁阳市', 3, 'qinyang', '0391', '454550', 'Q', '112.94494', '35.08935');
INSERT INTO `tb_region` VALUES (1622, 1612, '孟州', '孟州市', '中国,河南省,焦作市,孟州市', 3, 'mengzhou', '0391', '454750', 'M', '112.79138', '34.9071');
INSERT INTO `tb_region` VALUES (1623, 1532, '濮阳', '濮阳市', '中国,河南省,濮阳市', 2, 'puyang', '0393', '457000', 'P', '115.041299', '35.768234');
INSERT INTO `tb_region` VALUES (1624, 1623, '华龙', '华龙区', '中国,河南省,濮阳市,华龙区', 3, 'hualong', '0393', '457001', 'H', '115.07446', '35.77736');
INSERT INTO `tb_region` VALUES (1625, 1623, '清丰', '清丰县', '中国,河南省,濮阳市,清丰县', 3, 'qingfeng', '0393', '457300', 'Q', '115.10415', '35.88507');
INSERT INTO `tb_region` VALUES (1626, 1623, '南乐', '南乐县', '中国,河南省,濮阳市,南乐县', 3, 'nanle', '0393', '457400', 'N', '115.20639', '36.07686');
INSERT INTO `tb_region` VALUES (1627, 1623, '范县', '范县', '中国,河南省,濮阳市,范县', 3, 'fanxian', '0393', '457500', 'F', '115.50405', '35.85178');
INSERT INTO `tb_region` VALUES (1628, 1623, '台前', '台前县', '中国,河南省,濮阳市,台前县', 3, 'taiqian', '0393', '457600', 'T', '115.87158', '35.96923');
INSERT INTO `tb_region` VALUES (1629, 1623, '濮阳', '濮阳县', '中国,河南省,濮阳市,濮阳县', 3, 'puyang', '0393', '457100', 'P', '115.03057', '35.70745');
INSERT INTO `tb_region` VALUES (1630, 1532, '许昌', '许昌市', '中国,河南省,许昌市', 2, 'xuchang', '0374', '461000', 'X', '113.826063', '34.022956');
INSERT INTO `tb_region` VALUES (1631, 1630, '魏都', '魏都区', '中国,河南省,许昌市,魏都区', 3, 'weidu', '0374', '461000', 'W', '113.8227', '34.02544');
INSERT INTO `tb_region` VALUES (1632, 1630, '许昌', '许昌县', '中国,河南省,许昌市,许昌县', 3, 'xuchang', '0374', '461100', 'X', '113.84707', '34.00406');
INSERT INTO `tb_region` VALUES (1633, 1630, '鄢陵', '鄢陵县', '中国,河南省,许昌市,鄢陵县', 3, 'yanling', '0374', '461200', 'Y', '114.18795', '34.10317');
INSERT INTO `tb_region` VALUES (1634, 1630, '襄城', '襄城县', '中国,河南省,许昌市,襄城县', 3, 'xiangcheng', '0374', '461700', 'X', '113.48196', '33.84928');
INSERT INTO `tb_region` VALUES (1635, 1630, '禹州', '禹州市', '中国,河南省,许昌市,禹州市', 3, 'yuzhou', '0374', '461670', 'Y', '113.48803', '34.14054');
INSERT INTO `tb_region` VALUES (1636, 1630, '长葛', '长葛市', '中国,河南省,许昌市,长葛市', 3, 'changge', '0374', '461500', 'C', '113.77328', '34.21846');
INSERT INTO `tb_region` VALUES (1637, 1532, '漯河', '漯河市', '中国,河南省,漯河市', 2, 'luohe', '0395', '462000', 'L', '114.026405', '33.575855');
INSERT INTO `tb_region` VALUES (1638, 1637, '源汇', '源汇区', '中国,河南省,漯河市,源汇区', 3, 'yuanhui', '0395', '462000', 'Y', '114.00647', '33.55627');
INSERT INTO `tb_region` VALUES (1639, 1637, '郾城', '郾城区', '中国,河南省,漯河市,郾城区', 3, 'yancheng', '0395', '462300', 'Y', '114.00694', '33.58723');
INSERT INTO `tb_region` VALUES (1640, 1637, '召陵', '召陵区', '中国,河南省,漯河市,召陵区', 3, 'zhaoling', '0395', '462300', 'Z', '114.09399', '33.58601');
INSERT INTO `tb_region` VALUES (1641, 1637, '舞阳', '舞阳县', '中国,河南省,漯河市,舞阳县', 3, 'wuyang', '0395', '462400', 'W', '113.59848', '33.43243');
INSERT INTO `tb_region` VALUES (1642, 1637, '临颍', '临颍县', '中国,河南省,漯河市,临颍县', 3, 'linying', '0395', '462600', 'L', '113.93661', '33.81123');
INSERT INTO `tb_region` VALUES (1643, 1532, '三门峡', '三门峡市', '中国,河南省,三门峡市', 2, 'sanmenxia', '0398', '472000', 'S', '111.194099', '34.777338');
INSERT INTO `tb_region` VALUES (1644, 1643, '湖滨', '湖滨区', '中国,河南省,三门峡市,湖滨区', 3, 'hubin', '0398', '472000', 'H', '111.20006', '34.77872');
INSERT INTO `tb_region` VALUES (1645, 1643, '渑池', '渑池县', '中国,河南省,三门峡市,渑池县', 3, 'mianchi', '0398', '472400', 'M', '111.76184', '34.76725');
INSERT INTO `tb_region` VALUES (1646, 1643, '陕县', '陕县', '中国,河南省,三门峡市,陕县', 3, 'shanxian', '0398', '472100', 'S', '111.10333', '34.72052');
INSERT INTO `tb_region` VALUES (1647, 1643, '卢氏', '卢氏县', '中国,河南省,三门峡市,卢氏县', 3, 'lushi', '0398', '472200', 'L', '111.04782', '34.05436');
INSERT INTO `tb_region` VALUES (1648, 1643, '义马', '义马市', '中国,河南省,三门峡市,义马市', 3, 'yima', '0398', '472300', 'Y', '111.87445', '34.74721');
INSERT INTO `tb_region` VALUES (1649, 1643, '灵宝', '灵宝市', '中国,河南省,三门峡市,灵宝市', 3, 'lingbao', '0398', '472500', 'L', '110.8945', '34.51682');
INSERT INTO `tb_region` VALUES (1650, 1532, '南阳', '南阳市', '中国,河南省,南阳市', 2, 'nanyang', '0377', '473002', 'N', '112.540918', '32.999082');
INSERT INTO `tb_region` VALUES (1651, 1650, '宛城', '宛城区', '中国,河南省,南阳市,宛城区', 3, 'wancheng', '0377', '473001', 'W', '112.53955', '33.00378');
INSERT INTO `tb_region` VALUES (1652, 1650, '卧龙', '卧龙区', '中国,河南省,南阳市,卧龙区', 3, 'wolong', '0377', '473003', 'W', '112.53479', '32.98615');
INSERT INTO `tb_region` VALUES (1653, 1650, '南召', '南召县', '中国,河南省,南阳市,南召县', 3, 'nanzhao', '0377', '474650', 'N', '112.43194', '33.49098');
INSERT INTO `tb_region` VALUES (1654, 1650, '方城', '方城县', '中国,河南省,南阳市,方城县', 3, 'fangcheng', '0377', '473200', 'F', '113.01269', '33.25453');
INSERT INTO `tb_region` VALUES (1655, 1650, '西峡', '西峡县', '中国,河南省,南阳市,西峡县', 3, 'xixia', '0377', '474550', 'X', '111.48187', '33.29772');
INSERT INTO `tb_region` VALUES (1656, 1650, '镇平', '镇平县', '中国,河南省,南阳市,镇平县', 3, 'zhenping', '0377', '474250', 'Z', '112.2398', '33.03629');
INSERT INTO `tb_region` VALUES (1657, 1650, '内乡', '内乡县', '中国,河南省,南阳市,内乡县', 3, 'neixiang', '0377', '474350', 'N', '111.84957', '33.04671');
INSERT INTO `tb_region` VALUES (1658, 1650, '淅川', '淅川县', '中国,河南省,南阳市,淅川县', 3, 'xichuan', '0377', '474450', 'X', '111.48663', '33.13708');
INSERT INTO `tb_region` VALUES (1659, 1650, '社旗', '社旗县', '中国,河南省,南阳市,社旗县', 3, 'sheqi', '0377', '473300', 'S', '112.94656', '33.05503');
INSERT INTO `tb_region` VALUES (1660, 1650, '唐河', '唐河县', '中国,河南省,南阳市,唐河县', 3, 'tanghe', '0377', '473400', 'T', '112.83609', '32.69453');
INSERT INTO `tb_region` VALUES (1661, 1650, '新野', '新野县', '中国,河南省,南阳市,新野县', 3, 'xinye', '0377', '473500', 'X', '112.36151', '32.51698');
INSERT INTO `tb_region` VALUES (1662, 1650, '桐柏', '桐柏县', '中国,河南省,南阳市,桐柏县', 3, 'tongbai', '0377', '474750', 'T', '113.42886', '32.37917');
INSERT INTO `tb_region` VALUES (1663, 1650, '邓州', '邓州市', '中国,河南省,南阳市,邓州市', 3, 'dengzhou', '0377', '474150', 'D', '112.0896', '32.68577');
INSERT INTO `tb_region` VALUES (1664, 1532, '商丘', '商丘市', '中国,河南省,商丘市', 2, 'shangqiu', '0370', '476000', 'S', '115.650497', '34.437054');
INSERT INTO `tb_region` VALUES (1665, 1664, '梁园', '梁园区', '中国,河南省,商丘市,梁园区', 3, 'liangyuan', '0370', '476000', 'L', '115.64487', '34.44341');
INSERT INTO `tb_region` VALUES (1666, 1664, '睢阳', '睢阳区', '中国,河南省,商丘市,睢阳区', 3, 'suiyang', '0370', '476100', 'S', '115.65338', '34.38804');
INSERT INTO `tb_region` VALUES (1667, 1664, '民权', '民权县', '中国,河南省,商丘市,民权县', 3, 'minquan', '0370', '476800', 'M', '115.14621', '34.64931');
INSERT INTO `tb_region` VALUES (1668, 1664, '睢县', '睢县', '中国,河南省,商丘市,睢县', 3, 'suixian', '0370', '476900', 'S', '115.07168', '34.44539');
INSERT INTO `tb_region` VALUES (1669, 1664, '宁陵', '宁陵县', '中国,河南省,商丘市,宁陵县', 3, 'ningling', '0370', '476700', 'N', '115.30511', '34.45463');
INSERT INTO `tb_region` VALUES (1670, 1664, '柘城', '柘城县', '中国,河南省,商丘市,柘城县', 3, 'zhecheng', '0370', '476200', 'Z', '115.30538', '34.0911');
INSERT INTO `tb_region` VALUES (1671, 1664, '虞城', '虞城县', '中国,河南省,商丘市,虞城县', 3, 'yucheng', '0370', '476300', 'Y', '115.86337', '34.40189');
INSERT INTO `tb_region` VALUES (1672, 1664, '夏邑', '夏邑县', '中国,河南省,商丘市,夏邑县', 3, 'xiayi', '0370', '476400', 'X', '116.13348', '34.23242');
INSERT INTO `tb_region` VALUES (1673, 1664, '永城', '永城市', '中国,河南省,商丘市,永城市', 3, 'yongcheng', '0370', '476600', 'Y', '116.44943', '33.92911');
INSERT INTO `tb_region` VALUES (1674, 1532, '信阳', '信阳市', '中国,河南省,信阳市', 2, 'xinyang', '0376', '464000', 'X', '114.075031', '32.123274');
INSERT INTO `tb_region` VALUES (1675, 1674, '浉河', '浉河区', '中国,河南省,信阳市,浉河区', 3, 'shihe', '0376', '464000', 'S', '114.05871', '32.1168');
INSERT INTO `tb_region` VALUES (1676, 1674, '平桥', '平桥区', '中国,河南省,信阳市,平桥区', 3, 'pingqiao', '0376', '464100', 'P', '114.12435', '32.10095');
INSERT INTO `tb_region` VALUES (1677, 1674, '罗山', '罗山县', '中国,河南省,信阳市,罗山县', 3, 'luoshan', '0376', '464200', 'L', '114.5314', '32.20277');
INSERT INTO `tb_region` VALUES (1678, 1674, '光山', '光山县', '中国,河南省,信阳市,光山县', 3, 'guangshan', '0376', '465450', 'G', '114.91873', '32.00992');
INSERT INTO `tb_region` VALUES (1679, 1674, '新县', '新县', '中国,河南省,信阳市,新县', 3, 'xinxian', '0376', '465550', 'X', '114.87924', '31.64386');
INSERT INTO `tb_region` VALUES (1680, 1674, '商城', '商城县', '中国,河南省,信阳市,商城县', 3, 'shangcheng', '0376', '465350', 'S', '115.40856', '31.79986');
INSERT INTO `tb_region` VALUES (1681, 1674, '固始', '固始县', '中国,河南省,信阳市,固始县', 3, 'gushi', '0376', '465250', 'G', '115.68298', '32.18011');
INSERT INTO `tb_region` VALUES (1682, 1674, '潢川', '潢川县', '中国,河南省,信阳市,潢川县', 3, 'huangchuan', '0376', '465150', 'H', '115.04696', '32.13763');
INSERT INTO `tb_region` VALUES (1683, 1674, '淮滨', '淮滨县', '中国,河南省,信阳市,淮滨县', 3, 'huaibin', '0376', '464400', 'H', '115.4205', '32.46614');
INSERT INTO `tb_region` VALUES (1684, 1674, '息县', '息县', '中国,河南省,信阳市,息县', 3, 'xixian', '0376', '464300', 'X', '114.7402', '32.34279');
INSERT INTO `tb_region` VALUES (1685, 1532, '周口', '周口市', '中国,河南省,周口市', 2, 'zhoukou', '0394', '466000', 'Z', '114.649653', '33.620357');
INSERT INTO `tb_region` VALUES (1686, 1685, '川汇', '川汇区', '中国,河南省,周口市,川汇区', 3, 'chuanhui', '0394', '466000', 'C', '114.64202', '33.6256');
INSERT INTO `tb_region` VALUES (1687, 1685, '扶沟', '扶沟县', '中国,河南省,周口市,扶沟县', 3, 'fugou', '0394', '461300', 'F', '114.39477', '34.05999');
INSERT INTO `tb_region` VALUES (1688, 1685, '西华', '西华县', '中国,河南省,周口市,西华县', 3, 'xihua', '0394', '466600', 'X', '114.52279', '33.78548');
INSERT INTO `tb_region` VALUES (1689, 1685, '商水', '商水县', '中国,河南省,周口市,商水县', 3, 'shangshui', '0394', '466100', 'S', '114.60604', '33.53912');
INSERT INTO `tb_region` VALUES (1690, 1685, '沈丘', '沈丘县', '中国,河南省,周口市,沈丘县', 3, 'shenqiu', '0394', '466300', 'S', '115.09851', '33.40936');
INSERT INTO `tb_region` VALUES (1691, 1685, '郸城', '郸城县', '中国,河南省,周口市,郸城县', 3, 'dancheng', '0394', '477150', 'D', '115.17715', '33.64485');
INSERT INTO `tb_region` VALUES (1692, 1685, '淮阳', '淮阳县', '中国,河南省,周口市,淮阳县', 3, 'huaiyang', '0394', '466700', 'H', '114.88848', '33.73211');
INSERT INTO `tb_region` VALUES (1693, 1685, '太康', '太康县', '中国,河南省,周口市,太康县', 3, 'taikang', '0394', '461400', 'T', '114.83773', '34.06376');
INSERT INTO `tb_region` VALUES (1694, 1685, '鹿邑', '鹿邑县', '中国,河南省,周口市,鹿邑县', 3, 'luyi', '0394', '477200', 'L', '115.48553', '33.85931');
INSERT INTO `tb_region` VALUES (1695, 1685, '项城', '项城市', '中国,河南省,周口市,项城市', 3, 'xiangcheng', '0394', '466200', 'X', '114.87558', '33.4672');
INSERT INTO `tb_region` VALUES (1696, 1532, '驻马店', '驻马店市', '中国,河南省,驻马店市', 2, 'zhumadian', '0396', '463000', 'Z', '114.024736', '32.980169');
INSERT INTO `tb_region` VALUES (1697, 1696, '驿城', '驿城区', '中国,河南省,驻马店市,驿城区', 3, 'yicheng', '0396', '463000', 'Y', '113.99377', '32.97316');
INSERT INTO `tb_region` VALUES (1698, 1696, '西平', '西平县', '中国,河南省,驻马店市,西平县', 3, 'xiping', '0396', '463900', 'X', '114.02322', '33.3845');
INSERT INTO `tb_region` VALUES (1699, 1696, '上蔡', '上蔡县', '中国,河南省,驻马店市,上蔡县', 3, 'shangcai', '0396', '463800', 'S', '114.26825', '33.26825');
INSERT INTO `tb_region` VALUES (1700, 1696, '平舆', '平舆县', '中国,河南省,驻马店市,平舆县', 3, 'pingyu', '0396', '463400', 'P', '114.63552', '32.95727');
INSERT INTO `tb_region` VALUES (1701, 1696, '正阳', '正阳县', '中国,河南省,驻马店市,正阳县', 3, 'zhengyang', '0396', '463600', 'Z', '114.38952', '32.6039');
INSERT INTO `tb_region` VALUES (1702, 1696, '确山', '确山县', '中国,河南省,驻马店市,确山县', 3, 'queshan', '0396', '463200', 'Q', '114.02917', '32.80281');
INSERT INTO `tb_region` VALUES (1703, 1696, '泌阳', '泌阳县', '中国,河南省,驻马店市,泌阳县', 3, 'biyang', '0396', '463700', 'M', '113.32681', '32.71781');
INSERT INTO `tb_region` VALUES (1704, 1696, '汝南', '汝南县', '中国,河南省,驻马店市,汝南县', 3, 'runan', '0396', '463300', 'R', '114.36138', '33.00461');
INSERT INTO `tb_region` VALUES (1705, 1696, '遂平', '遂平县', '中国,河南省,驻马店市,遂平县', 3, 'suiping', '0396', '463100', 'S', '114.01297', '33.14571');
INSERT INTO `tb_region` VALUES (1706, 1696, '新蔡', '新蔡县', '中国,河南省,驻马店市,新蔡县', 3, 'xincai', '0396', '463500', 'X', '114.98199', '32.7502');
INSERT INTO `tb_region` VALUES (1707, 1532, ' ', '直辖县级', '中国,河南省,直辖县级', 2, '', '', '', 'Z', '113.665412', '34.757975');
INSERT INTO `tb_region` VALUES (1708, 1707, '济源', '济源市', '中国,河南省,直辖县级,济源市', 3, 'jiyuan', '0391', '454650', 'J', '112.590047', '35.090378');
INSERT INTO `tb_region` VALUES (1709, 0, '湖北', '湖北省', '中国,湖北省', 1, 'hubei', '', '', 'H', '114.298572', '30.584355');
INSERT INTO `tb_region` VALUES (1710, 1709, '武汉', '武汉市', '中国,湖北省,武汉市', 2, 'wuhan', '', '430014', 'W', '114.298572', '30.584355');
INSERT INTO `tb_region` VALUES (1711, 1710, '江岸', '江岸区', '中国,湖北省,武汉市,江岸区', 3, 'jiang\'an', '027', '430014', 'J', '114.30943', '30.59982');
INSERT INTO `tb_region` VALUES (1712, 1710, '江汉', '江汉区', '中国,湖北省,武汉市,江汉区', 3, 'jianghan', '027', '430021', 'J', '114.27093', '30.60146');
INSERT INTO `tb_region` VALUES (1713, 1710, '硚口', '硚口区', '中国,湖北省,武汉市,硚口区', 3, 'qiaokou', '027', '430033', 'Q', '114.26422', '30.56945');
INSERT INTO `tb_region` VALUES (1714, 1710, '汉阳', '汉阳区', '中国,湖北省,武汉市,汉阳区', 3, 'hanyang', '027', '430050', 'H', '114.27478', '30.54915');
INSERT INTO `tb_region` VALUES (1715, 1710, '武昌', '武昌区', '中国,湖北省,武汉市,武昌区', 3, 'wuchang', '027', '430061', 'W', '114.31589', '30.55389');
INSERT INTO `tb_region` VALUES (1716, 1710, '青山', '青山区', '中国,湖北省,武汉市,青山区', 3, 'qingshan', '027', '430080', 'Q', '114.39117', '30.63427');
INSERT INTO `tb_region` VALUES (1717, 1710, '洪山', '洪山区', '中国,湖北省,武汉市,洪山区', 3, 'hongshan', '027', '430070', 'H', '114.34375', '30.49989');
INSERT INTO `tb_region` VALUES (1718, 1710, '东西湖', '东西湖区', '中国,湖北省,武汉市,东西湖区', 3, 'dongxihu', '027', '430040', 'D', '114.13708', '30.61989');
INSERT INTO `tb_region` VALUES (1719, 1710, '汉南', '汉南区', '中国,湖北省,武汉市,汉南区', 3, 'hannan', '027', '430090', 'H', '114.08462', '30.30879');
INSERT INTO `tb_region` VALUES (1720, 1710, '蔡甸', '蔡甸区', '中国,湖北省,武汉市,蔡甸区', 3, 'caidian', '027', '430100', 'C', '114.02929', '30.58197');
INSERT INTO `tb_region` VALUES (1721, 1710, '江夏', '江夏区', '中国,湖北省,武汉市,江夏区', 3, 'jiangxia', '027', '430200', 'J', '114.31301', '30.34653');
INSERT INTO `tb_region` VALUES (1722, 1710, '黄陂', '黄陂区', '中国,湖北省,武汉市,黄陂区', 3, 'huangpi', '027', '432200', 'H', '114.37512', '30.88151');
INSERT INTO `tb_region` VALUES (1723, 1710, '新洲', '新洲区', '中国,湖北省,武汉市,新洲区', 3, 'xinzhou', '027', '431400', 'X', '114.80136', '30.84145');
INSERT INTO `tb_region` VALUES (1724, 1709, '黄石', '黄石市', '中国,湖北省,黄石市', 2, 'huangshi', '0714', '435003', 'H', '115.077048', '30.220074');
INSERT INTO `tb_region` VALUES (1725, 1724, '黄石港', '黄石港区', '中国,湖北省,黄石市,黄石港区', 3, 'huangshigang', '0714', '435000', 'H', '115.06604', '30.22279');
INSERT INTO `tb_region` VALUES (1726, 1724, '西塞山', '西塞山区', '中国,湖北省,黄石市,西塞山区', 3, 'xisaishan', '0714', '435001', 'X', '115.11016', '30.20487');
INSERT INTO `tb_region` VALUES (1727, 1724, '下陆', '下陆区', '中国,湖北省,黄石市,下陆区', 3, 'xialu', '0714', '435005', 'X', '114.96112', '30.17368');
INSERT INTO `tb_region` VALUES (1728, 1724, '铁山', '铁山区', '中国,湖北省,黄石市,铁山区', 3, 'tieshan', '0714', '435006', 'T', '114.90109', '30.20678');
INSERT INTO `tb_region` VALUES (1729, 1724, '阳新', '阳新县', '中国,湖北省,黄石市,阳新县', 3, 'yangxin', '0714', '435200', 'Y', '115.21527', '29.83038');
INSERT INTO `tb_region` VALUES (1730, 1724, '大冶', '大冶市', '中国,湖北省,黄石市,大冶市', 3, 'daye', '0714', '435100', 'D', '114.97174', '30.09438');
INSERT INTO `tb_region` VALUES (1731, 1709, '十堰', '十堰市', '中国,湖北省,十堰市', 2, 'shiyan', '0719', '442000', 'S', '110.785239', '32.647017');
INSERT INTO `tb_region` VALUES (1732, 1731, '茅箭', '茅箭区', '中国,湖北省,十堰市,茅箭区', 3, 'maojian', '0719', '442012', 'M', '110.81341', '32.59153');
INSERT INTO `tb_region` VALUES (1733, 1731, '张湾', '张湾区', '中国,湖北省,十堰市,张湾区', 3, 'zhangwan', '0719', '442001', 'Z', '110.77067', '32.65195');
INSERT INTO `tb_region` VALUES (1734, 1731, '郧阳', '郧阳区', '中国,湖北省,十堰市,郧阳区', 3, 'yunyang', '0719', '442500', 'Y', '110.81854', '32.83593');
INSERT INTO `tb_region` VALUES (1735, 1731, '郧西', '郧西县', '中国,湖北省,十堰市,郧西县', 3, 'yunxi', '0719', '442600', 'Y', '110.42556', '32.99349');
INSERT INTO `tb_region` VALUES (1736, 1731, '竹山', '竹山县', '中国,湖北省,十堰市,竹山县', 3, 'zhushan', '0719', '442200', 'Z', '110.23071', '32.22536');
INSERT INTO `tb_region` VALUES (1737, 1731, '竹溪', '竹溪县', '中国,湖北省,十堰市,竹溪县', 3, 'zhuxi', '0719', '442300', 'Z', '109.71798', '32.31901');
INSERT INTO `tb_region` VALUES (1738, 1731, '房县', '房县', '中国,湖北省,十堰市,房县', 3, 'fangxian', '0719', '442100', 'F', '110.74386', '32.05794');
INSERT INTO `tb_region` VALUES (1739, 1731, '丹江口', '丹江口市', '中国,湖北省,十堰市,丹江口市', 3, 'danjiangkou', '0719', '442700', 'D', '111.51525', '32.54085');
INSERT INTO `tb_region` VALUES (1740, 1709, '宜昌', '宜昌市', '中国,湖北省,宜昌市', 2, 'yichang', '0717', '443000', 'Y', '111.290843', '30.702636');
INSERT INTO `tb_region` VALUES (1741, 1740, '西陵', '西陵区', '中国,湖北省,宜昌市,西陵区', 3, 'xiling', '0717', '443000', 'X', '111.28573', '30.71077');
INSERT INTO `tb_region` VALUES (1742, 1740, '伍家岗', '伍家岗区', '中国,湖北省,宜昌市,伍家岗区', 3, 'wujiagang', '0717', '443001', 'W', '111.3609', '30.64434');
INSERT INTO `tb_region` VALUES (1743, 1740, '点军', '点军区', '中国,湖北省,宜昌市,点军区', 3, 'dianjun', '0717', '443006', 'D', '111.26828', '30.6934');
INSERT INTO `tb_region` VALUES (1744, 1740, '猇亭', '猇亭区', '中国,湖北省,宜昌市,猇亭区', 3, 'xiaoting', '0717', '443007', 'X', '111.44079', '30.52663');
INSERT INTO `tb_region` VALUES (1745, 1740, '夷陵', '夷陵区', '中国,湖北省,宜昌市,夷陵区', 3, 'yiling', '0717', '443100', 'Y', '111.3262', '30.76881');
INSERT INTO `tb_region` VALUES (1746, 1740, '远安', '远安县', '中国,湖北省,宜昌市,远安县', 3, 'yuan\'an', '0717', '444200', 'Y', '111.6416', '31.05989');
INSERT INTO `tb_region` VALUES (1747, 1740, '兴山', '兴山县', '中国,湖北省,宜昌市,兴山县', 3, 'xingshan', '0717', '443711', 'X', '110.74951', '31.34686');
INSERT INTO `tb_region` VALUES (1748, 1740, '秭归', '秭归县', '中国,湖北省,宜昌市,秭归县', 3, 'zigui', '0717', '443600', 'Z', '110.98156', '30.82702');
INSERT INTO `tb_region` VALUES (1749, 1740, '长阳', '长阳土家族自治县', '中国,湖北省,宜昌市,长阳土家族自治县', 3, 'changyang', '0717', '443500', 'C', '111.20105', '30.47052');
INSERT INTO `tb_region` VALUES (1750, 1740, '五峰', '五峰土家族自治县', '中国,湖北省,宜昌市,五峰土家族自治县', 3, 'wufeng', '0717', '443413', 'W', '110.6748', '30.19856');
INSERT INTO `tb_region` VALUES (1751, 1740, '宜都', '宜都市', '中国,湖北省,宜昌市,宜都市', 3, 'yidu', '0717', '443300', 'Y', '111.45025', '30.37807');
INSERT INTO `tb_region` VALUES (1752, 1740, '当阳', '当阳市', '中国,湖北省,宜昌市,当阳市', 3, 'dangyang', '0717', '444100', 'D', '111.78912', '30.8208');
INSERT INTO `tb_region` VALUES (1753, 1740, '枝江', '枝江市', '中国,湖北省,宜昌市,枝江市', 3, 'zhijiang', '0717', '443200', 'Z', '111.76855', '30.42612');
INSERT INTO `tb_region` VALUES (1754, 1709, '襄阳', '襄阳市', '中国,湖北省,襄阳市', 2, 'xiangyang', '0710', '441021', 'X', '112.144146', '32.042426');
INSERT INTO `tb_region` VALUES (1755, 1754, '襄城', '襄城区', '中国,湖北省,襄阳市,襄城区', 3, 'xiangcheng', '0710', '441021', 'X', '112.13372', '32.01017');
INSERT INTO `tb_region` VALUES (1756, 1754, '樊城', '樊城区', '中国,湖北省,襄阳市,樊城区', 3, 'fancheng', '0710', '441001', 'F', '112.13546', '32.04482');
INSERT INTO `tb_region` VALUES (1757, 1754, '襄州', '襄州区', '中国,湖北省,襄阳市,襄州区', 3, 'xiangzhou', '0710', '441100', 'X', '112.150327', '32.015088');
INSERT INTO `tb_region` VALUES (1758, 1754, '南漳', '南漳县', '中国,湖北省,襄阳市,南漳县', 3, 'nanzhang', '0710', '441500', 'N', '111.84603', '31.77653');
INSERT INTO `tb_region` VALUES (1759, 1754, '谷城', '谷城县', '中国,湖北省,襄阳市,谷城县', 3, 'gucheng', '0710', '441700', 'G', '111.65267', '32.26377');
INSERT INTO `tb_region` VALUES (1760, 1754, '保康', '保康县', '中国,湖北省,襄阳市,保康县', 3, 'baokang', '0710', '441600', 'B', '111.26138', '31.87874');
INSERT INTO `tb_region` VALUES (1761, 1754, '老河口', '老河口市', '中国,湖北省,襄阳市,老河口市', 3, 'laohekou', '0710', '441800', 'L', '111.67117', '32.38476');
INSERT INTO `tb_region` VALUES (1762, 1754, '枣阳', '枣阳市', '中国,湖北省,襄阳市,枣阳市', 3, 'zaoyang', '0710', '441200', 'Z', '112.77444', '32.13142');
INSERT INTO `tb_region` VALUES (1763, 1754, '宜城', '宜城市', '中国,湖北省,襄阳市,宜城市', 3, 'yicheng', '0710', '441400', 'Y', '112.25772', '31.71972');
INSERT INTO `tb_region` VALUES (1764, 1709, '鄂州', '鄂州市', '中国,湖北省,鄂州市', 2, 'ezhou', '0711', '436000', 'E', '114.890593', '30.396536');
INSERT INTO `tb_region` VALUES (1765, 1764, '梁子湖', '梁子湖区', '中国,湖北省,鄂州市,梁子湖区', 3, 'liangzihu', '0711', '436064', 'L', '114.68463', '30.10003');
INSERT INTO `tb_region` VALUES (1766, 1764, '华容', '华容区', '中国,湖北省,鄂州市,华容区', 3, 'huarong', '0711', '436030', 'H', '114.73568', '30.53328');
INSERT INTO `tb_region` VALUES (1767, 1764, '鄂城', '鄂城区', '中国,湖北省,鄂州市,鄂城区', 3, 'echeng', '0711', '436000', 'E', '114.89158', '30.40024');
INSERT INTO `tb_region` VALUES (1768, 1709, '荆门', '荆门市', '中国,湖北省,荆门市', 2, 'jingmen', '0724', '448000', 'J', '112.204251', '31.03542');
INSERT INTO `tb_region` VALUES (1769, 1768, '东宝', '东宝区', '中国,湖北省,荆门市,东宝区', 3, 'dongbao', '0724', '448004', 'D', '112.20147', '31.05192');
INSERT INTO `tb_region` VALUES (1770, 1768, '掇刀', '掇刀区', '中国,湖北省,荆门市,掇刀区', 3, 'duodao', '0724', '448124', 'D', '112.208', '30.97316');
INSERT INTO `tb_region` VALUES (1771, 1768, '京山', '京山县', '中国,湖北省,荆门市,京山县', 3, 'jingshan', '0724', '431800', 'J', '113.11074', '31.0224');
INSERT INTO `tb_region` VALUES (1772, 1768, '沙洋', '沙洋县', '中国,湖北省,荆门市,沙洋县', 3, 'shayang', '0724', '448200', 'S', '112.58853', '30.70916');
INSERT INTO `tb_region` VALUES (1773, 1768, '钟祥', '钟祥市', '中国,湖北省,荆门市,钟祥市', 3, 'zhongxiang', '0724', '431900', 'Z', '112.58932', '31.1678');
INSERT INTO `tb_region` VALUES (1774, 1709, '孝感', '孝感市', '中国,湖北省,孝感市', 2, 'xiaogan', '0712', '432100', 'X', '113.926655', '30.926423');
INSERT INTO `tb_region` VALUES (1775, 1774, '孝南', '孝南区', '中国,湖北省,孝感市,孝南区', 3, 'xiaonan', '0712', '432100', 'X', '113.91111', '30.9168');
INSERT INTO `tb_region` VALUES (1776, 1774, '孝昌', '孝昌县', '中国,湖北省,孝感市,孝昌县', 3, 'xiaochang', '0712', '432900', 'X', '113.99795', '31.25799');
INSERT INTO `tb_region` VALUES (1777, 1774, '大悟', '大悟县', '中国,湖北省,孝感市,大悟县', 3, 'dawu', '0712', '432800', 'D', '114.12564', '31.56176');
INSERT INTO `tb_region` VALUES (1778, 1774, '云梦', '云梦县', '中国,湖北省,孝感市,云梦县', 3, 'yunmeng', '0712', '432500', 'Y', '113.75289', '31.02093');
INSERT INTO `tb_region` VALUES (1779, 1774, '应城', '应城市', '中国,湖北省,孝感市,应城市', 3, 'yingcheng', '0712', '432400', 'Y', '113.57287', '30.92834');
INSERT INTO `tb_region` VALUES (1780, 1774, '安陆', '安陆市', '中国,湖北省,孝感市,安陆市', 3, 'anlu', '0712', '432600', 'A', '113.68557', '31.25693');
INSERT INTO `tb_region` VALUES (1781, 1774, '汉川', '汉川市', '中国,湖北省,孝感市,汉川市', 3, 'hanchuan', '0712', '432300', 'H', '113.83898', '30.66117');
INSERT INTO `tb_region` VALUES (1782, 1709, '荆州', '荆州市', '中国,湖北省,荆州市', 2, 'jingzhou', '0716', '434000', 'J', '112.23813', '30.326857');
INSERT INTO `tb_region` VALUES (1783, 1782, '沙市', '沙市区', '中国,湖北省,荆州市,沙市区', 3, 'shashi', '0716', '434000', 'S', '112.25543', '30.31107');
INSERT INTO `tb_region` VALUES (1784, 1782, '荆州', '荆州区', '中国,湖北省,荆州市,荆州区', 3, 'jingzhou', '0716', '434020', 'J', '112.19006', '30.35264');
INSERT INTO `tb_region` VALUES (1785, 1782, '公安', '公安县', '中国,湖北省,荆州市,公安县', 3, 'gong\'an', '0716', '434300', 'G', '112.23242', '30.05902');
INSERT INTO `tb_region` VALUES (1786, 1782, '监利', '监利县', '中国,湖北省,荆州市,监利县', 3, 'jianli', '0716', '433300', 'J', '112.89462', '29.81494');
INSERT INTO `tb_region` VALUES (1787, 1782, '江陵', '江陵县', '中国,湖北省,荆州市,江陵县', 3, 'jiangling', '0716', '434101', 'J', '112.42468', '30.04174');
INSERT INTO `tb_region` VALUES (1788, 1782, '石首', '石首市', '中国,湖北省,荆州市,石首市', 3, 'shishou', '0716', '434400', 'S', '112.42636', '29.72127');
INSERT INTO `tb_region` VALUES (1789, 1782, '洪湖', '洪湖市', '中国,湖北省,荆州市,洪湖市', 3, 'honghu', '0716', '433200', 'H', '113.47598', '29.827');
INSERT INTO `tb_region` VALUES (1790, 1782, '松滋', '松滋市', '中国,湖北省,荆州市,松滋市', 3, 'songzi', '0716', '434200', 'S', '111.76739', '30.16965');
INSERT INTO `tb_region` VALUES (1791, 1709, '黄冈', '黄冈市', '中国,湖北省,黄冈市', 2, 'huanggang', '0713', '438000', 'H', '114.879365', '30.447711');
INSERT INTO `tb_region` VALUES (1792, 1791, '黄州', '黄州区', '中国,湖北省,黄冈市,黄州区', 3, 'huangzhou', '0713', '438000', 'H', '114.88008', '30.43436');
INSERT INTO `tb_region` VALUES (1793, 1791, '团风', '团风县', '中国,湖北省,黄冈市,团风县', 3, 'tuanfeng', '0713', '438800', 'T', '114.87228', '30.64359');
INSERT INTO `tb_region` VALUES (1794, 1791, '红安', '红安县', '中国,湖北省,黄冈市,红安县', 3, 'hong\'an', '0713', '438401', 'H', '114.6224', '31.28668');
INSERT INTO `tb_region` VALUES (1795, 1791, '罗田', '罗田县', '中国,湖北省,黄冈市,罗田县', 3, 'luotian', '0713', '438600', 'L', '115.39971', '30.78255');
INSERT INTO `tb_region` VALUES (1796, 1791, '英山', '英山县', '中国,湖北省,黄冈市,英山县', 3, 'yingshan', '0713', '438700', 'Y', '115.68142', '30.73516');
INSERT INTO `tb_region` VALUES (1797, 1791, '浠水', '浠水县', '中国,湖北省,黄冈市,浠水县', 3, 'xishui', '0713', '438200', 'X', '115.26913', '30.45265');
INSERT INTO `tb_region` VALUES (1798, 1791, '蕲春', '蕲春县', '中国,湖北省,黄冈市,蕲春县', 3, 'qichun', '0713', '435300', 'Q', '115.43615', '30.22613');
INSERT INTO `tb_region` VALUES (1799, 1791, '黄梅', '黄梅县', '中国,湖北省,黄冈市,黄梅县', 3, 'huangmei', '0713', '435500', 'H', '115.94427', '30.07033');
INSERT INTO `tb_region` VALUES (1800, 1791, '麻城', '麻城市', '中国,湖北省,黄冈市,麻城市', 3, 'macheng', '0713', '438300', 'M', '115.00988', '31.17228');
INSERT INTO `tb_region` VALUES (1801, 1791, '武穴', '武穴市', '中国,湖北省,黄冈市,武穴市', 3, 'wuxue', '0713', '435400', 'W', '115.55975', '29.84446');
INSERT INTO `tb_region` VALUES (1802, 1709, '咸宁', '咸宁市', '中国,湖北省,咸宁市', 2, 'xianning', '0715', '437000', 'X', '114.328963', '29.832798');
INSERT INTO `tb_region` VALUES (1803, 1802, '咸安', '咸安区', '中国,湖北省,咸宁市,咸安区', 3, 'xian\'an', '0715', '437000', 'X', '114.29872', '29.8529');
INSERT INTO `tb_region` VALUES (1804, 1802, '嘉鱼', '嘉鱼县', '中国,湖北省,咸宁市,嘉鱼县', 3, 'jiayu', '0715', '437200', 'J', '113.93927', '29.97054');
INSERT INTO `tb_region` VALUES (1805, 1802, '通城', '通城县', '中国,湖北省,咸宁市,通城县', 3, 'tongcheng', '0715', '437400', 'T', '113.81582', '29.24568');
INSERT INTO `tb_region` VALUES (1806, 1802, '崇阳', '崇阳县', '中国,湖北省,咸宁市,崇阳县', 3, 'chongyang', '0715', '437500', 'C', '114.03982', '29.55564');
INSERT INTO `tb_region` VALUES (1807, 1802, '通山', '通山县', '中国,湖北省,咸宁市,通山县', 3, 'tongshan', '0715', '437600', 'T', '114.48239', '29.6063');
INSERT INTO `tb_region` VALUES (1808, 1802, '赤壁', '赤壁市', '中国,湖北省,咸宁市,赤壁市', 3, 'chibi', '0715', '437300', 'C', '113.90039', '29.72454');
INSERT INTO `tb_region` VALUES (1809, 1709, '随州', '随州市', '中国,湖北省,随州市', 2, 'suizhou', '0722', '441300', 'S', '113.37377', '31.717497');
INSERT INTO `tb_region` VALUES (1810, 1809, '曾都', '曾都区', '中国,湖北省,随州市,曾都区', 3, 'zengdu', '0722', '441300', 'Z', '113.37128', '31.71614');
INSERT INTO `tb_region` VALUES (1811, 1809, '随县', '随县', '中国,湖北省,随州市,随县', 3, 'suixian', '0722', '441309', 'S', '113.82663', '31.6179');
INSERT INTO `tb_region` VALUES (1812, 1809, '广水', '广水市', '中国,湖北省,随州市,广水市', 3, 'guangshui', '0722', '432700', 'G', '113.82663', '31.6179');
INSERT INTO `tb_region` VALUES (1813, 1709, '恩施', '恩施土家族苗族自治州', '中国,湖北省,恩施土家族苗族自治州', 2, 'enshi', '0718', '445000', 'E', '109.48699', '30.283114');
INSERT INTO `tb_region` VALUES (1814, 1813, '恩施', '恩施市', '中国,湖北省,恩施土家族苗族自治州,恩施市', 3, 'enshi', '0718', '445000', 'E', '109.47942', '30.29502');
INSERT INTO `tb_region` VALUES (1815, 1813, '利川', '利川市', '中国,湖北省,恩施土家族苗族自治州,利川市', 3, 'lichuan', '0718', '445400', 'L', '108.93591', '30.29117');
INSERT INTO `tb_region` VALUES (1816, 1813, '建始', '建始县', '中国,湖北省,恩施土家族苗族自治州,建始县', 3, 'jianshi', '0718', '445300', 'J', '109.72207', '30.60209');
INSERT INTO `tb_region` VALUES (1817, 1813, '巴东', '巴东县', '中国,湖北省,恩施土家族苗族自治州,巴东县', 3, 'badong', '0718', '444300', 'B', '110.34066', '31.04233');
INSERT INTO `tb_region` VALUES (1818, 1813, '宣恩', '宣恩县', '中国,湖北省,恩施土家族苗族自治州,宣恩县', 3, 'xuanen', '0718', '445500', 'X', '109.49179', '29.98714');
INSERT INTO `tb_region` VALUES (1819, 1813, '咸丰', '咸丰县', '中国,湖北省,恩施土家族苗族自治州,咸丰县', 3, 'xianfeng', '0718', '445600', 'X', '109.152', '29.67983');
INSERT INTO `tb_region` VALUES (1820, 1813, '来凤', '来凤县', '中国,湖北省,恩施土家族苗族自治州,来凤县', 3, 'laifeng', '0718', '445700', 'L', '109.40716', '29.49373');
INSERT INTO `tb_region` VALUES (1821, 1813, '鹤峰', '鹤峰县', '中国,湖北省,恩施土家族苗族自治州,鹤峰县', 3, 'hefeng', '0718', '445800', 'H', '110.03091', '29.89072');
INSERT INTO `tb_region` VALUES (1822, 1709, ' ', '直辖县级', '中国,湖北省,直辖县级', 2, '', '', '', 'Z', '114.298572', '30.584355');
INSERT INTO `tb_region` VALUES (1823, 1822, '仙桃', '仙桃市', '中国,湖北省,直辖县级,仙桃市', 3, 'xiantao', '0728', '433000', 'X', '113.453974', '30.364953');
INSERT INTO `tb_region` VALUES (1824, 1822, '潜江', '潜江市', '中国,湖北省,直辖县级,潜江市', 3, 'qianjiang', '0728', '433100', 'Q', '112.896866', '30.421215');
INSERT INTO `tb_region` VALUES (1825, 1822, '天门', '天门市', '中国,湖北省,直辖县级,天门市', 3, 'tianmen', '0728', '431700', 'T', '113.165862', '30.653061');
INSERT INTO `tb_region` VALUES (1826, 1822, '神农架', '神农架林区', '中国,湖北省,直辖县级,神农架林区', 3, 'shennongjia', '0719', '442400', 'S', '110.671525', '31.744449');
INSERT INTO `tb_region` VALUES (1827, 0, '湖南', '湖南省', '中国,湖南省', 1, 'hunan', '', '', 'H', '112.982279', '28.19409');
INSERT INTO `tb_region` VALUES (1828, 1827, '长沙', '长沙市', '中国,湖南省,长沙市', 2, 'changsha', '0731', '410005', 'C', '112.982279', '28.19409');
INSERT INTO `tb_region` VALUES (1829, 1828, '芙蓉', '芙蓉区', '中国,湖南省,长沙市,芙蓉区', 3, 'furong', '0731', '410011', 'F', '113.03176', '28.1844');
INSERT INTO `tb_region` VALUES (1830, 1828, '天心', '天心区', '中国,湖南省,长沙市,天心区', 3, 'tianxin', '0731', '410004', 'T', '112.98991', '28.1127');
INSERT INTO `tb_region` VALUES (1831, 1828, '岳麓', '岳麓区', '中国,湖南省,长沙市,岳麓区', 3, 'yuelu', '0731', '410013', 'Y', '112.93133', '28.2351');
INSERT INTO `tb_region` VALUES (1832, 1828, '开福', '开福区', '中国,湖南省,长沙市,开福区', 3, 'kaifu', '0731', '410008', 'K', '112.98623', '28.25585');
INSERT INTO `tb_region` VALUES (1833, 1828, '雨花', '雨花区', '中国,湖南省,长沙市,雨花区', 3, 'yuhua', '0731', '410011', 'Y', '113.03567', '28.13541');
INSERT INTO `tb_region` VALUES (1834, 1828, '望城', '望城区', '中国,湖南省,长沙市,望城区', 3, 'wangcheng', '0731', '410200', 'W', '112.819549', '28.347458');
INSERT INTO `tb_region` VALUES (1835, 1828, '长沙', '长沙县', '中国,湖南省,长沙市,长沙县', 3, 'changsha', '0731', '410100', 'C', '113.08071', '28.24595');
INSERT INTO `tb_region` VALUES (1836, 1828, '宁乡', '宁乡县', '中国,湖南省,长沙市,宁乡县', 3, 'ningxiang', '0731', '410600', 'N', '112.55749', '28.25358');
INSERT INTO `tb_region` VALUES (1837, 1828, '浏阳', '浏阳市', '中国,湖南省,长沙市,浏阳市', 3, 'liuyang', '0731', '410300', 'L', '113.64312', '28.16375');
INSERT INTO `tb_region` VALUES (1838, 1827, '株洲', '株洲市', '中国,湖南省,株洲市', 2, 'zhuzhou', '0731', '412000', 'Z', '113.151737', '27.835806');
INSERT INTO `tb_region` VALUES (1839, 1838, '荷塘', '荷塘区', '中国,湖南省,株洲市,荷塘区', 3, 'hetang', '0731', '412000', 'H', '113.17315', '27.85569');
INSERT INTO `tb_region` VALUES (1840, 1838, '芦淞', '芦淞区', '中国,湖南省,株洲市,芦淞区', 3, 'lusong', '0731', '412000', 'L', '113.15562', '27.78525');
INSERT INTO `tb_region` VALUES (1841, 1838, '石峰', '石峰区', '中国,湖南省,株洲市,石峰区', 3, 'shifeng', '0731', '412005', 'S', '113.11776', '27.87552');
INSERT INTO `tb_region` VALUES (1842, 1838, '天元', '天元区', '中国,湖南省,株洲市,天元区', 3, 'tianyuan', '0731', '412007', 'T', '113.12335', '27.83103');
INSERT INTO `tb_region` VALUES (1843, 1838, '株洲', '株洲县', '中国,湖南省,株洲市,株洲县', 3, 'zhuzhou', '0731', '412100', 'Z', '113.14428', '27.69826');
INSERT INTO `tb_region` VALUES (1844, 1838, '攸县', '攸县', '中国,湖南省,株洲市,攸县', 3, 'youxian', '0731', '412300', 'Y', '113.34365', '27.00352');
INSERT INTO `tb_region` VALUES (1845, 1838, '茶陵', '茶陵县', '中国,湖南省,株洲市,茶陵县', 3, 'chaling', '0731', '412400', 'C', '113.54364', '26.7915');
INSERT INTO `tb_region` VALUES (1846, 1838, '炎陵', '炎陵县', '中国,湖南省,株洲市,炎陵县', 3, 'yanling', '0731', '412500', 'Y', '113.77163', '26.48818');
INSERT INTO `tb_region` VALUES (1847, 1838, '醴陵', '醴陵市', '中国,湖南省,株洲市,醴陵市', 3, 'liling', '0731', '412200', 'L', '113.49704', '27.64615');
INSERT INTO `tb_region` VALUES (1848, 1827, '湘潭', '湘潭市', '中国,湖南省,湘潭市', 2, 'xiangtan', '0731', '411100', 'X', '112.925083', '27.846725');
INSERT INTO `tb_region` VALUES (1849, 1848, '雨湖', '雨湖区', '中国,湖南省,湘潭市,雨湖区', 3, 'yuhu', '0731', '411100', 'Y', '112.90399', '27.86859');
INSERT INTO `tb_region` VALUES (1850, 1848, '岳塘', '岳塘区', '中国,湖南省,湘潭市,岳塘区', 3, 'yuetang', '0731', '411101', 'Y', '112.9606', '27.85784');
INSERT INTO `tb_region` VALUES (1851, 1848, '湘潭', '湘潭县', '中国,湖南省,湘潭市,湘潭县', 3, 'xiangtan', '0731', '411228', 'X', '112.9508', '27.77893');
INSERT INTO `tb_region` VALUES (1852, 1848, '湘乡', '湘乡市', '中国,湖南省,湘潭市,湘乡市', 3, 'xiangxiang', '0731', '411400', 'X', '112.53512', '27.73543');
INSERT INTO `tb_region` VALUES (1853, 1848, '韶山', '韶山市', '中国,湖南省,湘潭市,韶山市', 3, 'shaoshan', '0731', '411300', 'S', '112.52655', '27.91503');
INSERT INTO `tb_region` VALUES (1854, 1827, '衡阳', '衡阳市', '中国,湖南省,衡阳市', 2, 'hengyang', '0734', '421001', 'H', '112.607693', '26.900358');
INSERT INTO `tb_region` VALUES (1855, 1854, '珠晖', '珠晖区', '中国,湖南省,衡阳市,珠晖区', 3, 'zhuhui', '0734', '421002', 'Z', '112.62054', '26.89361');
INSERT INTO `tb_region` VALUES (1856, 1854, '雁峰', '雁峰区', '中国,湖南省,衡阳市,雁峰区', 3, 'yanfeng', '0734', '421001', 'Y', '112.61654', '26.88866');
INSERT INTO `tb_region` VALUES (1857, 1854, '石鼓', '石鼓区', '中国,湖南省,衡阳市,石鼓区', 3, 'shigu', '0734', '421005', 'S', '112.61069', '26.90232');
INSERT INTO `tb_region` VALUES (1858, 1854, '蒸湘', '蒸湘区', '中国,湖南省,衡阳市,蒸湘区', 3, 'zhengxiang', '0734', '421001', 'Z', '112.6033', '26.89651');
INSERT INTO `tb_region` VALUES (1859, 1854, '南岳', '南岳区', '中国,湖南省,衡阳市,南岳区', 3, 'nanyue', '0734', '421900', 'N', '112.7384', '27.23262');
INSERT INTO `tb_region` VALUES (1860, 1854, '衡阳', '衡阳县', '中国,湖南省,衡阳市,衡阳县', 3, 'hengyang', '0734', '421200', 'H', '112.37088', '26.9706');
INSERT INTO `tb_region` VALUES (1861, 1854, '衡南', '衡南县', '中国,湖南省,衡阳市,衡南县', 3, 'hengnan', '0734', '421131', 'H', '112.67788', '26.73828');
INSERT INTO `tb_region` VALUES (1862, 1854, '衡山', '衡山县', '中国,湖南省,衡阳市,衡山县', 3, 'hengshan', '0734', '421300', 'H', '112.86776', '27.23134');
INSERT INTO `tb_region` VALUES (1863, 1854, '衡东', '衡东县', '中国,湖南省,衡阳市,衡东县', 3, 'hengdong', '0734', '421400', 'H', '112.94833', '27.08093');
INSERT INTO `tb_region` VALUES (1864, 1854, '祁东', '祁东县', '中国,湖南省,衡阳市,祁东县', 3, 'qidong', '0734', '421600', 'Q', '112.09039', '26.79964');
INSERT INTO `tb_region` VALUES (1865, 1854, '耒阳', '耒阳市', '中国,湖南省,衡阳市,耒阳市', 3, 'leiyang', '0734', '421800', 'L', '112.85998', '26.42132');
INSERT INTO `tb_region` VALUES (1866, 1854, '常宁', '常宁市', '中国,湖南省,衡阳市,常宁市', 3, 'changning', '0734', '421500', 'C', '112.4009', '26.40692');
INSERT INTO `tb_region` VALUES (1867, 1827, '邵阳', '邵阳市', '中国,湖南省,邵阳市', 2, 'shaoyang', '0739', '422000', 'S', '111.46923', '27.237842');
INSERT INTO `tb_region` VALUES (1868, 1867, '双清', '双清区', '中国,湖南省,邵阳市,双清区', 3, 'shuangqing', '0739', '422001', 'S', '111.49715', '27.23291');
INSERT INTO `tb_region` VALUES (1869, 1867, '大祥', '大祥区', '中国,湖南省,邵阳市,大祥区', 3, 'daxiang', '0739', '422000', 'D', '111.45412', '27.23332');
INSERT INTO `tb_region` VALUES (1870, 1867, '北塔', '北塔区', '中国,湖南省,邵阳市,北塔区', 3, 'beita', '0739', '422007', 'B', '111.45219', '27.24648');
INSERT INTO `tb_region` VALUES (1871, 1867, '邵东', '邵东县', '中国,湖南省,邵阳市,邵东县', 3, 'shaodong', '0739', '422800', 'S', '111.74441', '27.2584');
INSERT INTO `tb_region` VALUES (1872, 1867, '新邵', '新邵县', '中国,湖南省,邵阳市,新邵县', 3, 'xinshao', '0739', '422900', 'X', '111.46066', '27.32169');
INSERT INTO `tb_region` VALUES (1873, 1867, '邵阳', '邵阳县', '中国,湖南省,邵阳市,邵阳县', 3, 'shaoyang', '0739', '422100', 'S', '111.27459', '26.99143');
INSERT INTO `tb_region` VALUES (1874, 1867, '隆回', '隆回县', '中国,湖南省,邵阳市,隆回县', 3, 'longhui', '0739', '422200', 'L', '111.03216', '27.10937');
INSERT INTO `tb_region` VALUES (1875, 1867, '洞口', '洞口县', '中国,湖南省,邵阳市,洞口县', 3, 'dongkou', '0739', '422300', 'D', '110.57388', '27.05462');
INSERT INTO `tb_region` VALUES (1876, 1867, '绥宁', '绥宁县', '中国,湖南省,邵阳市,绥宁县', 3, 'suining', '0739', '422600', 'S', '110.15576', '26.58636');
INSERT INTO `tb_region` VALUES (1877, 1867, '新宁', '新宁县', '中国,湖南省,邵阳市,新宁县', 3, 'xinning', '0739', '422700', 'X', '110.85131', '26.42936');
INSERT INTO `tb_region` VALUES (1878, 1867, '城步', '城步苗族自治县', '中国,湖南省,邵阳市,城步苗族自治县', 3, 'chengbu', '0739', '422500', 'C', '110.3222', '26.39048');
INSERT INTO `tb_region` VALUES (1879, 1867, '武冈', '武冈市', '中国,湖南省,邵阳市,武冈市', 3, 'wugang', '0739', '422400', 'W', '110.63281', '26.72817');
INSERT INTO `tb_region` VALUES (1880, 1827, '岳阳', '岳阳市', '中国,湖南省,岳阳市', 2, 'yueyang', '0730', '414000', 'Y', '113.132855', '29.37029');
INSERT INTO `tb_region` VALUES (1881, 1880, '岳阳楼', '岳阳楼区', '中国,湖南省,岳阳市,岳阳楼区', 3, 'yueyanglou', '0730', '414000', 'Y', '113.12942', '29.3719');
INSERT INTO `tb_region` VALUES (1882, 1880, '云溪', '云溪区', '中国,湖南省,岳阳市,云溪区', 3, 'yunxi', '0730', '414009', 'Y', '113.27713', '29.47357');
INSERT INTO `tb_region` VALUES (1883, 1880, '君山', '君山区', '中国,湖南省,岳阳市,君山区', 3, 'junshan', '0730', '414005', 'J', '113.00439', '29.45941');
INSERT INTO `tb_region` VALUES (1884, 1880, '岳阳', '岳阳县', '中国,湖南省,岳阳市,岳阳县', 3, 'yueyang', '0730', '414100', 'Y', '113.11987', '29.14314');
INSERT INTO `tb_region` VALUES (1885, 1880, '华容', '华容县', '中国,湖南省,岳阳市,华容县', 3, 'huarong', '0730', '414200', 'H', '112.54089', '29.53019');
INSERT INTO `tb_region` VALUES (1886, 1880, '湘阴', '湘阴县', '中国,湖南省,岳阳市,湘阴县', 3, 'xiangyin', '0730', '414600', 'X', '112.90911', '28.68922');
INSERT INTO `tb_region` VALUES (1887, 1880, '平江', '平江县', '中国,湖南省,岳阳市,平江县', 3, 'pingjiang', '0730', '414500', 'P', '113.58105', '28.70664');
INSERT INTO `tb_region` VALUES (1888, 1880, '汨罗', '汨罗市', '中国,湖南省,岳阳市,汨罗市', 3, 'miluo', '0730', '414400', 'M', '113.06707', '28.80631');
INSERT INTO `tb_region` VALUES (1889, 1880, '临湘', '临湘市', '中国,湖南省,岳阳市,临湘市', 3, 'linxiang', '0730', '414300', 'L', '113.4501', '29.47701');
INSERT INTO `tb_region` VALUES (1890, 1827, '常德', '常德市', '中国,湖南省,常德市', 2, 'changde', '0736', '415000', 'C', '111.691347', '29.040225');
INSERT INTO `tb_region` VALUES (1891, 1890, '武陵', '武陵区', '中国,湖南省,常德市,武陵区', 3, 'wuling', '0736', '415000', 'W', '111.69791', '29.02876');
INSERT INTO `tb_region` VALUES (1892, 1890, '鼎城', '鼎城区', '中国,湖南省,常德市,鼎城区', 3, 'dingcheng', '0736', '415101', 'D', '111.68078', '29.01859');
INSERT INTO `tb_region` VALUES (1893, 1890, '安乡', '安乡县', '中国,湖南省,常德市,安乡县', 3, 'anxiang', '0736', '415600', 'A', '112.16732', '29.41326');
INSERT INTO `tb_region` VALUES (1894, 1890, '汉寿', '汉寿县', '中国,湖南省,常德市,汉寿县', 3, 'hanshou', '0736', '415900', 'H', '111.96691', '28.90299');
INSERT INTO `tb_region` VALUES (1895, 1890, '澧县', '澧县', '中国,湖南省,常德市,澧县', 3, 'lixian', '0736', '415500', 'L', '111.75866', '29.63317');
INSERT INTO `tb_region` VALUES (1896, 1890, '临澧', '临澧县', '中国,湖南省,常德市,临澧县', 3, 'linli', '0736', '415200', 'L', '111.65161', '29.44163');
INSERT INTO `tb_region` VALUES (1897, 1890, '桃源', '桃源县', '中国,湖南省,常德市,桃源县', 3, 'taoyuan', '0736', '415700', 'T', '111.48892', '28.90474');
INSERT INTO `tb_region` VALUES (1898, 1890, '石门', '石门县', '中国,湖南省,常德市,石门县', 3, 'shimen', '0736', '415300', 'S', '111.37966', '29.58424');
INSERT INTO `tb_region` VALUES (1899, 1890, '津市', '津市市', '中国,湖南省,常德市,津市市', 3, 'jinshi', '0736', '415400', 'J', '111.87756', '29.60563');
INSERT INTO `tb_region` VALUES (1900, 1827, '张家界', '张家界市', '中国,湖南省,张家界市', 2, 'zhangjiajie', '0744', '427000', 'Z', '110.479921', '29.127401');
INSERT INTO `tb_region` VALUES (1901, 1900, '永定', '永定区', '中国,湖南省,张家界市,永定区', 3, 'yongding', '0744', '427000', 'Y', '110.47464', '29.13387');
INSERT INTO `tb_region` VALUES (1902, 1900, '武陵源', '武陵源区', '中国,湖南省,张家界市,武陵源区', 3, 'wulingyuan', '0744', '427400', 'W', '110.55026', '29.34574');
INSERT INTO `tb_region` VALUES (1903, 1900, '慈利', '慈利县', '中国,湖南省,张家界市,慈利县', 3, 'cili', '0744', '427200', 'C', '111.13946', '29.42989');
INSERT INTO `tb_region` VALUES (1904, 1900, '桑植', '桑植县', '中国,湖南省,张家界市,桑植县', 3, 'sangzhi', '0744', '427100', 'S', '110.16308', '29.39815');
INSERT INTO `tb_region` VALUES (1905, 1827, '益阳', '益阳市', '中国,湖南省,益阳市', 2, 'yiyang', '0737', '413000', 'Y', '112.355042', '28.570066');
INSERT INTO `tb_region` VALUES (1906, 1905, '资阳', '资阳区', '中国,湖南省,益阳市,资阳区', 3, 'ziyang', '0737', '413001', 'Z', '112.32447', '28.59095');
INSERT INTO `tb_region` VALUES (1907, 1905, '赫山', '赫山区', '中国,湖南省,益阳市,赫山区', 3, 'heshan', '0737', '413002', 'H', '112.37265', '28.57425');
INSERT INTO `tb_region` VALUES (1908, 1905, '南县', '南县', '中国,湖南省,益阳市,南县', 3, 'nanxian', '0737', '413200', 'N', '112.3963', '29.36159');
INSERT INTO `tb_region` VALUES (1909, 1905, '桃江', '桃江县', '中国,湖南省,益阳市,桃江县', 3, 'taojiang', '0737', '413400', 'T', '112.1557', '28.51814');
INSERT INTO `tb_region` VALUES (1910, 1905, '安化', '安化县', '中国,湖南省,益阳市,安化县', 3, 'anhua', '0737', '413500', 'A', '111.21298', '28.37424');
INSERT INTO `tb_region` VALUES (1911, 1905, '沅江', '沅江市', '中国,湖南省,益阳市,沅江市', 3, 'yuanjiang', '0737', '413100', 'Y', '112.35427', '28.84403');
INSERT INTO `tb_region` VALUES (1912, 1827, '郴州', '郴州市', '中国,湖南省,郴州市', 2, 'chenzhou', '0735', '423000', 'C', '113.032067', '25.793589');
INSERT INTO `tb_region` VALUES (1913, 1912, '北湖', '北湖区', '中国,湖南省,郴州市,北湖区', 3, 'beihu', '0735', '423000', 'B', '113.01103', '25.78405');
INSERT INTO `tb_region` VALUES (1914, 1912, '苏仙', '苏仙区', '中国,湖南省,郴州市,苏仙区', 3, 'suxian', '0735', '423000', 'S', '113.04226', '25.80045');
INSERT INTO `tb_region` VALUES (1915, 1912, '桂阳', '桂阳县', '中国,湖南省,郴州市,桂阳县', 3, 'guiyang', '0735', '424400', 'G', '112.73364', '25.75406');
INSERT INTO `tb_region` VALUES (1916, 1912, '宜章', '宜章县', '中国,湖南省,郴州市,宜章县', 3, 'yizhang', '0735', '424200', 'Y', '112.95147', '25.39931');
INSERT INTO `tb_region` VALUES (1917, 1912, '永兴', '永兴县', '中国,湖南省,郴州市,永兴县', 3, 'yongxing', '0735', '423300', 'Y', '113.11242', '26.12646');
INSERT INTO `tb_region` VALUES (1918, 1912, '嘉禾', '嘉禾县', '中国,湖南省,郴州市,嘉禾县', 3, 'jiahe', '0735', '424500', 'J', '112.36935', '25.58795');
INSERT INTO `tb_region` VALUES (1919, 1912, '临武', '临武县', '中国,湖南省,郴州市,临武县', 3, 'linwu', '0735', '424300', 'L', '112.56369', '25.27602');
INSERT INTO `tb_region` VALUES (1920, 1912, '汝城', '汝城县', '中国,湖南省,郴州市,汝城县', 3, 'rucheng', '0735', '424100', 'R', '113.68582', '25.55204');
INSERT INTO `tb_region` VALUES (1921, 1912, '桂东', '桂东县', '中国,湖南省,郴州市,桂东县', 3, 'guidong', '0735', '423500', 'G', '113.9468', '26.07987');
INSERT INTO `tb_region` VALUES (1922, 1912, '安仁', '安仁县', '中国,湖南省,郴州市,安仁县', 3, 'anren', '0735', '423600', 'A', '113.26944', '26.70931');
INSERT INTO `tb_region` VALUES (1923, 1912, '资兴', '资兴市', '中国,湖南省,郴州市,资兴市', 3, 'zixing', '0735', '423400', 'Z', '113.23724', '25.97668');
INSERT INTO `tb_region` VALUES (1924, 1827, '永州', '永州市', '中国,湖南省,永州市', 2, 'yongzhou', '0746', '425000', 'Y', '111.608019', '26.434516');
INSERT INTO `tb_region` VALUES (1925, 1924, '零陵', '零陵区', '中国,湖南省,永州市,零陵区', 3, 'lingling', '0746', '425100', 'L', '111.62103', '26.22109');
INSERT INTO `tb_region` VALUES (1926, 1924, '冷水滩', '冷水滩区', '中国,湖南省,永州市,冷水滩区', 3, 'lengshuitan', '0746', '425100', 'L', '111.59214', '26.46107');
INSERT INTO `tb_region` VALUES (1927, 1924, '祁阳', '祁阳县', '中国,湖南省,永州市,祁阳县', 3, 'qiyang', '0746', '426100', 'Q', '111.84011', '26.58009');
INSERT INTO `tb_region` VALUES (1928, 1924, '东安', '东安县', '中国,湖南省,永州市,东安县', 3, 'dong\'an', '0746', '425900', 'D', '111.3164', '26.39202');
INSERT INTO `tb_region` VALUES (1929, 1924, '双牌', '双牌县', '中国,湖南省,永州市,双牌县', 3, 'shuangpai', '0746', '425200', 'S', '111.65927', '25.95988');
INSERT INTO `tb_region` VALUES (1930, 1924, '道县', '道县', '中国,湖南省,永州市,道县', 3, 'daoxian', '0746', '425300', 'D', '111.60195', '25.52766');
INSERT INTO `tb_region` VALUES (1931, 1924, '江永', '江永县', '中国,湖南省,永州市,江永县', 3, 'jiangyong', '0746', '425400', 'J', '111.34082', '25.27233');
INSERT INTO `tb_region` VALUES (1932, 1924, '宁远', '宁远县', '中国,湖南省,永州市,宁远县', 3, 'ningyuan', '0746', '425600', 'N', '111.94625', '25.56913');
INSERT INTO `tb_region` VALUES (1933, 1924, '蓝山', '蓝山县', '中国,湖南省,永州市,蓝山县', 3, 'lanshan', '0746', '425800', 'L', '112.19363', '25.36794');
INSERT INTO `tb_region` VALUES (1934, 1924, '新田', '新田县', '中国,湖南省,永州市,新田县', 3, 'xintian', '0746', '425700', 'X', '112.22103', '25.9095');
INSERT INTO `tb_region` VALUES (1935, 1924, '江华', '江华瑶族自治县', '中国,湖南省,永州市,江华瑶族自治县', 3, 'jianghua', '0746', '425500', 'J', '111.58847', '25.1845');
INSERT INTO `tb_region` VALUES (1936, 1827, '怀化', '怀化市', '中国,湖南省,怀化市', 2, 'huaihua', '0745', '418000', 'H', '109.97824', '27.550082');
INSERT INTO `tb_region` VALUES (1937, 1936, '鹤城', '鹤城区', '中国,湖南省,怀化市,鹤城区', 3, 'hecheng', '0745', '418000', 'H', '109.96509', '27.54942');
INSERT INTO `tb_region` VALUES (1938, 1936, '中方', '中方县', '中国,湖南省,怀化市,中方县', 3, 'zhongfang', '0745', '418005', 'Z', '109.94497', '27.43988');
INSERT INTO `tb_region` VALUES (1939, 1936, '沅陵', '沅陵县', '中国,湖南省,怀化市,沅陵县', 3, 'yuanling', '0745', '419600', 'Y', '110.39633', '28.45548');
INSERT INTO `tb_region` VALUES (1940, 1936, '辰溪', '辰溪县', '中国,湖南省,怀化市,辰溪县', 3, 'chenxi', '0745', '419500', 'C', '110.18942', '28.00406');
INSERT INTO `tb_region` VALUES (1941, 1936, '溆浦', '溆浦县', '中国,湖南省,怀化市,溆浦县', 3, 'xupu', '0745', '419300', 'X', '110.59384', '27.90836');
INSERT INTO `tb_region` VALUES (1942, 1936, '会同', '会同县', '中国,湖南省,怀化市,会同县', 3, 'huitong', '0745', '418300', 'H', '109.73568', '26.88716');
INSERT INTO `tb_region` VALUES (1943, 1936, '麻阳', '麻阳苗族自治县', '中国,湖南省,怀化市,麻阳苗族自治县', 3, 'mayang', '0745', '419400', 'M', '109.80194', '27.866');
INSERT INTO `tb_region` VALUES (1944, 1936, '新晃', '新晃侗族自治县', '中国,湖南省,怀化市,新晃侗族自治县', 3, 'xinhuang', '0745', '419200', 'X', '109.17166', '27.35937');
INSERT INTO `tb_region` VALUES (1945, 1936, '芷江', '芷江侗族自治县', '中国,湖南省,怀化市,芷江侗族自治县', 3, 'zhijiang', '0745', '419100', 'Z', '109.6849', '27.44297');
INSERT INTO `tb_region` VALUES (1946, 1936, '靖州', '靖州苗族侗族自治县', '中国,湖南省,怀化市,靖州苗族侗族自治县', 3, 'jingzhou', '0745', '418400', 'J', '109.69821', '26.57651');
INSERT INTO `tb_region` VALUES (1947, 1936, '通道', '通道侗族自治县', '中国,湖南省,怀化市,通道侗族自治县', 3, 'tongdao', '0745', '418500', 'T', '109.78515', '26.1571');
INSERT INTO `tb_region` VALUES (1948, 1936, '洪江', '洪江市', '中国,湖南省,怀化市,洪江市', 3, 'hongjiang', '0745', '418100', 'H', '109.83651', '27.20922');
INSERT INTO `tb_region` VALUES (1949, 1827, '娄底', '娄底市', '中国,湖南省,娄底市', 2, 'loudi', '0738', '417000', 'L', '112.008497', '27.728136');
INSERT INTO `tb_region` VALUES (1950, 1949, '娄星', '娄星区', '中国,湖南省,娄底市,娄星区', 3, 'louxing', '0738', '417000', 'L', '112.00193', '27.72992');
INSERT INTO `tb_region` VALUES (1951, 1949, '双峰', '双峰县', '中国,湖南省,娄底市,双峰县', 3, 'shuangfeng', '0738', '417700', 'S', '112.19921', '27.45418');
INSERT INTO `tb_region` VALUES (1952, 1949, '新化', '新化县', '中国,湖南省,娄底市,新化县', 3, 'xinhua', '0738', '417600', 'X', '111.32739', '27.7266');
INSERT INTO `tb_region` VALUES (1953, 1949, '冷水江', '冷水江市', '中国,湖南省,娄底市,冷水江市', 3, 'lengshuijiang', '0738', '417500', 'L', '111.43554', '27.68147');
INSERT INTO `tb_region` VALUES (1954, 1949, '涟源', '涟源市', '中国,湖南省,娄底市,涟源市', 3, 'lianyuan', '0738', '417100', 'L', '111.67233', '27.68831');
INSERT INTO `tb_region` VALUES (1955, 1827, '湘西', '湘西土家族苗族自治州', '中国,湖南省,湘西土家族苗族自治州', 2, 'xiangxi', '0743', '416000', 'X', '109.739735', '28.314296');
INSERT INTO `tb_region` VALUES (1956, 1955, '吉首', '吉首市', '中国,湖南省,湘西土家族苗族自治州,吉首市', 3, 'jishou', '0743', '416000', 'J', '109.69799', '28.26247');
INSERT INTO `tb_region` VALUES (1957, 1955, '泸溪', '泸溪县', '中国,湖南省,湘西土家族苗族自治州,泸溪县', 3, 'luxi', '0743', '416100', 'L', '110.21682', '28.2205');
INSERT INTO `tb_region` VALUES (1958, 1955, '凤凰', '凤凰县', '中国,湖南省,湘西土家族苗族自治州,凤凰县', 3, 'fenghuang', '0743', '416200', 'F', '109.60156', '27.94822');
INSERT INTO `tb_region` VALUES (1959, 1955, '花垣', '花垣县', '中国,湖南省,湘西土家族苗族自治州,花垣县', 3, 'huayuan', '0743', '416400', 'H', '109.48217', '28.5721');
INSERT INTO `tb_region` VALUES (1960, 1955, '保靖', '保靖县', '中国,湖南省,湘西土家族苗族自治州,保靖县', 3, 'baojing', '0743', '416500', 'B', '109.66049', '28.69997');
INSERT INTO `tb_region` VALUES (1961, 1955, '古丈', '古丈县', '中国,湖南省,湘西土家族苗族自治州,古丈县', 3, 'guzhang', '0743', '416300', 'G', '109.94812', '28.61944');
INSERT INTO `tb_region` VALUES (1962, 1955, '永顺', '永顺县', '中国,湖南省,湘西土家族苗族自治州,永顺县', 3, 'yongshun', '0743', '416700', 'Y', '109.85266', '29.00103');
INSERT INTO `tb_region` VALUES (1963, 1955, '龙山', '龙山县', '中国,湖南省,湘西土家族苗族自治州,龙山县', 3, 'longshan', '0743', '416800', 'L', '109.4432', '29.45693');
INSERT INTO `tb_region` VALUES (1964, 0, '广东', '广东省', '中国,广东省', 1, 'guangdong', '', '', 'G', '113.280637', '23.125178');
INSERT INTO `tb_region` VALUES (1965, 1964, '广州', '广州市', '中国,广东省,广州市', 2, 'guangzhou', '020', '510032', 'G', '113.280637', '23.125178');
INSERT INTO `tb_region` VALUES (1966, 1965, '荔湾', '荔湾区', '中国,广东省,广州市,荔湾区', 3, 'liwan', '020', '510170', 'L', '113.2442', '23.12592');
INSERT INTO `tb_region` VALUES (1967, 1965, '越秀', '越秀区', '中国,广东省,广州市,越秀区', 3, 'yuexiu', '020', '510030', 'Y', '113.26683', '23.12897');
INSERT INTO `tb_region` VALUES (1968, 1965, '海珠', '海珠区', '中国,广东省,广州市,海珠区', 3, 'haizhu', '020', '510300', 'H', '113.26197', '23.10379');
INSERT INTO `tb_region` VALUES (1969, 1965, '天河', '天河区', '中国,广东省,广州市,天河区', 3, 'tianhe', '020', '510665', 'T', '113.36112', '23.12467');
INSERT INTO `tb_region` VALUES (1970, 1965, '白云', '白云区', '中国,广东省,广州市,白云区', 3, 'baiyun', '020', '510405', 'B', '113.27307', '23.15787');
INSERT INTO `tb_region` VALUES (1971, 1965, '黄埔', '黄埔区', '中国,广东省,广州市,黄埔区', 3, 'huangpu', '020', '510700', 'H', '113.45895', '23.10642');
INSERT INTO `tb_region` VALUES (1972, 1965, '番禺', '番禺区', '中国,广东省,广州市,番禺区', 3, 'panyu', '020', '511400', 'F', '113.38397', '22.93599');
INSERT INTO `tb_region` VALUES (1973, 1965, '花都', '花都区', '中国,广东省,广州市,花都区', 3, 'huadu', '020', '510800', 'H', '113.22033', '23.40358');
INSERT INTO `tb_region` VALUES (1974, 1965, '南沙', '南沙区', '中国,广东省,广州市,南沙区', 3, 'nansha', '020', '511458', 'N', '113.60845', '22.77144');
INSERT INTO `tb_region` VALUES (1975, 1965, '从化', '从化区', '中国,广东省,广州市,从化区', 3, 'conghua', '020', '510900', 'C', '113.587386', '23.545283');
INSERT INTO `tb_region` VALUES (1976, 1965, '增城', '增城区', '中国,广东省,广州市,增城区', 3, 'zengcheng', '020', '511300', 'Z', '113.829579', '23.290497');
INSERT INTO `tb_region` VALUES (1977, 1964, '韶关', '韶关市', '中国,广东省,韶关市', 2, 'shaoguan', '0751', '512002', 'S', '113.591544', '24.801322');
INSERT INTO `tb_region` VALUES (1978, 1977, '武江', '武江区', '中国,广东省,韶关市,武江区', 3, 'wujiang', '0751', '512026', 'W', '113.58767', '24.79264');
INSERT INTO `tb_region` VALUES (1979, 1977, '浈江', '浈江区', '中国,广东省,韶关市,浈江区', 3, 'zhenjiang', '0751', '512023', 'Z', '113.61109', '24.80438');
INSERT INTO `tb_region` VALUES (1980, 1977, '曲江', '曲江区', '中国,广东省,韶关市,曲江区', 3, 'qujiang', '0751', '512101', 'Q', '113.60165', '24.67915');
INSERT INTO `tb_region` VALUES (1981, 1977, '始兴', '始兴县', '中国,广东省,韶关市,始兴县', 3, 'shixing', '0751', '512500', 'S', '114.06799', '24.94759');
INSERT INTO `tb_region` VALUES (1982, 1977, '仁化', '仁化县', '中国,广东省,韶关市,仁化县', 3, 'renhua', '0751', '512300', 'R', '113.74737', '25.08742');
INSERT INTO `tb_region` VALUES (1983, 1977, '翁源', '翁源县', '中国,广东省,韶关市,翁源县', 3, 'wengyuan', '0751', '512600', 'W', '114.13385', '24.3495');
INSERT INTO `tb_region` VALUES (1984, 1977, '乳源', '乳源瑶族自治县', '中国,广东省,韶关市,乳源瑶族自治县', 3, 'ruyuan', '0751', '512700', 'R', '113.27734', '24.77803');
INSERT INTO `tb_region` VALUES (1985, 1977, '新丰', '新丰县', '中国,广东省,韶关市,新丰县', 3, 'xinfeng', '0751', '511100', 'X', '114.20788', '24.05924');
INSERT INTO `tb_region` VALUES (1986, 1977, '乐昌', '乐昌市', '中国,广东省,韶关市,乐昌市', 3, 'lechang', '0751', '512200', 'L', '113.35653', '25.12799');
INSERT INTO `tb_region` VALUES (1987, 1977, '南雄', '南雄市', '中国,广东省,韶关市,南雄市', 3, 'nanxiong', '0751', '512400', 'N', '114.30966', '25.11706');
INSERT INTO `tb_region` VALUES (1988, 1964, '深圳', '深圳市', '中国,广东省,深圳市', 2, 'shenzhen', '0755', '518035', 'S', '114.085947', '22.547');
INSERT INTO `tb_region` VALUES (1989, 1988, '罗湖', '罗湖区', '中国,广东省,深圳市,罗湖区', 3, 'luohu', '0755', '518021', 'L', '114.13116', '22.54836');
INSERT INTO `tb_region` VALUES (1990, 1988, '福田', '福田区', '中国,广东省,深圳市,福田区', 3, 'futian', '0755', '518048', 'F', '114.05571', '22.52245');
INSERT INTO `tb_region` VALUES (1991, 1988, '南山', '南山区', '中国,广东省,深圳市,南山区', 3, 'nanshan', '0755', '518051', 'N', '113.93029', '22.53291');
INSERT INTO `tb_region` VALUES (1992, 1988, '宝安', '宝安区', '中国,广东省,深圳市,宝安区', 3, 'bao\'an', '0755', '518101', 'B', '113.88311', '22.55371');
INSERT INTO `tb_region` VALUES (1993, 1988, '龙岗', '龙岗区', '中国,广东省,深圳市,龙岗区', 3, 'longgang', '0755', '518172', 'L', '114.24771', '22.71986');
INSERT INTO `tb_region` VALUES (1994, 1988, '盐田', '盐田区', '中国,广东省,深圳市,盐田区', 3, 'yantian', '0755', '518081', 'Y', '114.23733', '22.5578');
INSERT INTO `tb_region` VALUES (1995, 1988, '光明新区', '光明新区', '中国,广东省,深圳市,光明新区', 3, 'guangmingxinqu', '0755', '518100', 'G', '113.896026', '22.777292');
INSERT INTO `tb_region` VALUES (1996, 1988, '坪山新区', '坪山新区', '中国,广东省,深圳市,坪山新区', 3, 'pingshanxinqu', '0755', '518000', 'P', '114.34637', '22.690529');
INSERT INTO `tb_region` VALUES (1997, 1988, '大鹏新区', '大鹏新区', '中国,广东省,深圳市,大鹏新区', 3, 'dapengxinqu', '0755', '518000', 'D', '114.479901', '22.587862');
INSERT INTO `tb_region` VALUES (1998, 1988, '龙华新区', '龙华新区', '中国,广东省,深圳市,龙华新区', 3, 'longhuaxinqu', '0755', '518100', 'L', '114.036585', '22.68695');
INSERT INTO `tb_region` VALUES (1999, 1964, '珠海', '珠海市', '中国,广东省,珠海市', 2, 'zhuhai', '0756', '519000', 'Z', '113.552724', '22.255899');
INSERT INTO `tb_region` VALUES (2000, 1999, '香洲', '香洲区', '中国,广东省,珠海市,香洲区', 3, 'xiangzhou', '0756', '519000', 'X', '113.5435', '22.26654');
INSERT INTO `tb_region` VALUES (2001, 1999, '斗门', '斗门区', '中国,广东省,珠海市,斗门区', 3, 'doumen', '0756', '519110', 'D', '113.29644', '22.20898');
INSERT INTO `tb_region` VALUES (2002, 1999, '金湾', '金湾区', '中国,广东省,珠海市,金湾区', 3, 'jinwan', '0756', '519040', 'J', '113.36361', '22.14691');
INSERT INTO `tb_region` VALUES (2003, 1964, '汕头', '汕头市', '中国,广东省,汕头市', 2, 'shantou', '0754', '515041', 'S', '116.708463', '23.37102');
INSERT INTO `tb_region` VALUES (2004, 2003, '龙湖', '龙湖区', '中国,广东省,汕头市,龙湖区', 3, 'longhu', '0754', '515041', 'L', '116.71641', '23.37166');
INSERT INTO `tb_region` VALUES (2005, 2003, '金平', '金平区', '中国,广东省,汕头市,金平区', 3, 'jinping', '0754', '515041', 'J', '116.70364', '23.36637');
INSERT INTO `tb_region` VALUES (2006, 2003, '濠江', '濠江区', '中国,广东省,汕头市,濠江区', 3, 'haojiang', '0754', '515071', 'H', '116.72659', '23.28588');
INSERT INTO `tb_region` VALUES (2007, 2003, '潮阳', '潮阳区', '中国,广东省,汕头市,潮阳区', 3, 'chaoyang', '0754', '515100', 'C', '116.6015', '23.26485');
INSERT INTO `tb_region` VALUES (2008, 2003, '潮南', '潮南区', '中国,广东省,汕头市,潮南区', 3, 'chaonan', '0754', '515144', 'C', '116.43188', '23.25');
INSERT INTO `tb_region` VALUES (2009, 2003, '澄海', '澄海区', '中国,广东省,汕头市,澄海区', 3, 'chenghai', '0754', '515800', 'C', '116.75589', '23.46728');
INSERT INTO `tb_region` VALUES (2010, 2003, '南澳', '南澳县', '中国,广东省,汕头市,南澳县', 3, 'nanao', '0754', '515900', 'N', '117.01889', '23.4223');
INSERT INTO `tb_region` VALUES (2011, 1964, '佛山', '佛山市', '中国,广东省,佛山市', 2, 'foshan', '0757', '528000', 'F', '113.122717', '23.028762');
INSERT INTO `tb_region` VALUES (2012, 2011, '禅城', '禅城区', '中国,广东省,佛山市,禅城区', 3, 'chancheng', '0757', '528000', 'C', '113.1228', '23.00842');
INSERT INTO `tb_region` VALUES (2013, 2011, '南海', '南海区', '中国,广东省,佛山市,南海区', 3, 'nanhai', '0757', '528251', 'N', '113.14299', '23.02877');
INSERT INTO `tb_region` VALUES (2014, 2011, '顺德', '顺德区', '中国,广东省,佛山市,顺德区', 3, 'shunde', '0757', '528300', 'S', '113.29394', '22.80452');
INSERT INTO `tb_region` VALUES (2015, 2011, '三水', '三水区', '中国,广东省,佛山市,三水区', 3, 'sanshui', '0757', '528133', 'S', '112.89703', '23.15564');
INSERT INTO `tb_region` VALUES (2016, 2011, '高明', '高明区', '中国,广东省,佛山市,高明区', 3, 'gaoming', '0757', '528500', 'G', '112.89254', '22.90022');
INSERT INTO `tb_region` VALUES (2017, 1964, '江门', '江门市', '中国,广东省,江门市', 2, 'jiangmen', '0750', '529000', 'J', '113.094942', '22.590431');
INSERT INTO `tb_region` VALUES (2018, 2017, '蓬江', '蓬江区', '中国,广东省,江门市,蓬江区', 3, 'pengjiang', '0750', '529000', 'P', '113.07849', '22.59515');
INSERT INTO `tb_region` VALUES (2019, 2017, '江海', '江海区', '中国,广东省,江门市,江海区', 3, 'jianghai', '0750', '529040', 'J', '113.11099', '22.56024');
INSERT INTO `tb_region` VALUES (2020, 2017, '新会', '新会区', '中国,广东省,江门市,新会区', 3, 'xinhui', '0750', '529100', 'X', '113.03225', '22.45876');
INSERT INTO `tb_region` VALUES (2021, 2017, '台山', '台山市', '中国,广东省,江门市,台山市', 3, 'taishan', '0750', '529200', 'T', '112.79382', '22.2515');
INSERT INTO `tb_region` VALUES (2022, 2017, '开平', '开平市', '中国,广东省,江门市,开平市', 3, 'kaiping', '0750', '529337', 'K', '112.69842', '22.37622');
INSERT INTO `tb_region` VALUES (2023, 2017, '鹤山', '鹤山市', '中国,广东省,江门市,鹤山市', 3, 'heshan', '0750', '529700', 'H', '112.96429', '22.76523');
INSERT INTO `tb_region` VALUES (2024, 2017, '恩平', '恩平市', '中国,广东省,江门市,恩平市', 3, 'enping', '0750', '529400', 'E', '112.30496', '22.18288');
INSERT INTO `tb_region` VALUES (2025, 1964, '湛江', '湛江市', '中国,广东省,湛江市', 2, 'zhanjiang', '0759', '524047', 'Z', '110.405529', '21.195338');
INSERT INTO `tb_region` VALUES (2026, 2025, '赤坎', '赤坎区', '中国,广东省,湛江市,赤坎区', 3, 'chikan', '0759', '524033', 'C', '110.36592', '21.26606');
INSERT INTO `tb_region` VALUES (2027, 2025, '霞山', '霞山区', '中国,广东省,湛江市,霞山区', 3, 'xiashan', '0759', '524011', 'X', '110.39822', '21.19181');
INSERT INTO `tb_region` VALUES (2028, 2025, '坡头', '坡头区', '中国,广东省,湛江市,坡头区', 3, 'potou', '0759', '524057', 'P', '110.45533', '21.24472');
INSERT INTO `tb_region` VALUES (2029, 2025, '麻章', '麻章区', '中国,广东省,湛江市,麻章区', 3, 'mazhang', '0759', '524094', 'M', '110.3342', '21.26333');
INSERT INTO `tb_region` VALUES (2030, 2025, '遂溪', '遂溪县', '中国,广东省,湛江市,遂溪县', 3, 'suixi', '0759', '524300', 'S', '110.25003', '21.37721');
INSERT INTO `tb_region` VALUES (2031, 2025, '徐闻', '徐闻县', '中国,广东省,湛江市,徐闻县', 3, 'xuwen', '0759', '524100', 'X', '110.17379', '20.32812');
INSERT INTO `tb_region` VALUES (2032, 2025, '廉江', '廉江市', '中国,广东省,湛江市,廉江市', 3, 'lianjiang', '0759', '524400', 'L', '110.28442', '21.60917');
INSERT INTO `tb_region` VALUES (2033, 2025, '雷州', '雷州市', '中国,广东省,湛江市,雷州市', 3, 'leizhou', '0759', '524200', 'L', '110.10092', '20.91428');
INSERT INTO `tb_region` VALUES (2034, 2025, '吴川', '吴川市', '中国,广东省,湛江市,吴川市', 3, 'wuchuan', '0759', '524500', 'W', '110.77703', '21.44584');
INSERT INTO `tb_region` VALUES (2035, 1964, '茂名', '茂名市', '中国,广东省,茂名市', 2, 'maoming', '0668', '525000', 'M', '110.919229', '21.659751');
INSERT INTO `tb_region` VALUES (2036, 2035, '茂南', '茂南区', '中国,广东省,茂名市,茂南区', 3, 'maonan', '0668', '525000', 'M', '110.9187', '21.64103');
INSERT INTO `tb_region` VALUES (2037, 2035, '电白', '电白区', '中国,广东省,茂名市,电白区', 3, 'dianbai', '0668', '525400', 'D', '111.007264', '21.507219');
INSERT INTO `tb_region` VALUES (2038, 2035, '高州', '高州市', '中国,广东省,茂名市,高州市', 3, 'gaozhou', '0668', '525200', 'G', '110.85519', '21.92057');
INSERT INTO `tb_region` VALUES (2039, 2035, '化州', '化州市', '中国,广东省,茂名市,化州市', 3, 'huazhou', '0668', '525100', 'H', '110.63949', '21.66394');
INSERT INTO `tb_region` VALUES (2040, 2035, '信宜', '信宜市', '中国,广东省,茂名市,信宜市', 3, 'xinyi', '0668', '525300', 'X', '110.94647', '22.35351');
INSERT INTO `tb_region` VALUES (2041, 1964, '肇庆', '肇庆市', '中国,广东省,肇庆市', 2, 'zhaoqing', '0758', '526040', 'Z', '112.472529', '23.051546');
INSERT INTO `tb_region` VALUES (2042, 2041, '端州', '端州区', '中国,广东省,肇庆市,端州区', 3, 'duanzhou', '0758', '526060', 'D', '112.48495', '23.0519');
INSERT INTO `tb_region` VALUES (2043, 2041, '鼎湖', '鼎湖区', '中国,广东省,肇庆市,鼎湖区', 3, 'dinghu', '0758', '526070', 'D', '112.56643', '23.15846');
INSERT INTO `tb_region` VALUES (2044, 2041, '广宁', '广宁县', '中国,广东省,肇庆市,广宁县', 3, 'guangning', '0758', '526300', 'G', '112.44064', '23.6346');
INSERT INTO `tb_region` VALUES (2045, 2041, '怀集', '怀集县', '中国,广东省,肇庆市,怀集县', 3, 'huaiji', '0758', '526400', 'H', '112.18396', '23.90918');
INSERT INTO `tb_region` VALUES (2046, 2041, '封开', '封开县', '中国,广东省,肇庆市,封开县', 3, 'fengkai', '0758', '526500', 'F', '111.50332', '23.43571');
INSERT INTO `tb_region` VALUES (2047, 2041, '德庆', '德庆县', '中国,广东省,肇庆市,德庆县', 3, 'deqing', '0758', '526600', 'D', '111.78555', '23.14371');
INSERT INTO `tb_region` VALUES (2048, 2041, '高要', '高要市', '中国,广东省,肇庆市,高要市', 3, 'gaoyao', '0758', '526100', 'G', '112.45834', '23.02577');
INSERT INTO `tb_region` VALUES (2049, 2041, '四会', '四会市', '中国,广东省,肇庆市,四会市', 3, 'sihui', '0758', '526200', 'S', '112.73416', '23.32686');
INSERT INTO `tb_region` VALUES (2050, 1964, '惠州', '惠州市', '中国,广东省,惠州市', 2, 'huizhou', '0752', '516000', 'H', '114.412599', '23.079404');
INSERT INTO `tb_region` VALUES (2051, 2050, '惠城', '惠城区', '中国,广东省,惠州市,惠城区', 3, 'huicheng', '0752', '516008', 'H', '114.3828', '23.08377');
INSERT INTO `tb_region` VALUES (2052, 2050, '惠阳', '惠阳区', '中国,广东省,惠州市,惠阳区', 3, 'huiyang', '0752', '516211', 'H', '114.45639', '22.78845');
INSERT INTO `tb_region` VALUES (2053, 2050, '博罗', '博罗县', '中国,广东省,惠州市,博罗县', 3, 'boluo', '0752', '516100', 'B', '114.28964', '23.17307');
INSERT INTO `tb_region` VALUES (2054, 2050, '惠东', '惠东县', '中国,广东省,惠州市,惠东县', 3, 'huidong', '0752', '516300', 'H', '114.72009', '22.98484');
INSERT INTO `tb_region` VALUES (2055, 2050, '龙门', '龙门县', '中国,广东省,惠州市,龙门县', 3, 'longmen', '0752', '516800', 'L', '114.25479', '23.72758');
INSERT INTO `tb_region` VALUES (2056, 1964, '梅州', '梅州市', '中国,广东省,梅州市', 2, 'meizhou', '0753', '514021', 'M', '116.117582', '24.299112');
INSERT INTO `tb_region` VALUES (2057, 2056, '梅江', '梅江区', '中国,广东省,梅州市,梅江区', 3, 'meijiang', '0753', '514000', 'M', '116.11663', '24.31062');
INSERT INTO `tb_region` VALUES (2058, 2056, '梅县', '梅县区', '中国,广东省,梅州市,梅县区', 3, 'meixian', '0753', '514787', 'M', '116.097753', '24.286739');
INSERT INTO `tb_region` VALUES (2059, 2056, '大埔', '大埔县', '中国,广东省,梅州市,大埔县', 3, 'dabu', '0753', '514200', 'D', '116.69662', '24.35325');
INSERT INTO `tb_region` VALUES (2060, 2056, '丰顺', '丰顺县', '中国,广东省,梅州市,丰顺县', 3, 'fengshun', '0753', '514300', 'F', '116.18219', '23.74094');
INSERT INTO `tb_region` VALUES (2061, 2056, '五华', '五华县', '中国,广东省,梅州市,五华县', 3, 'wuhua', '0753', '514400', 'W', '115.77893', '23.92417');
INSERT INTO `tb_region` VALUES (2062, 2056, '平远', '平远县', '中国,广东省,梅州市,平远县', 3, 'pingyuan', '0753', '514600', 'P', '115.89556', '24.57116');
INSERT INTO `tb_region` VALUES (2063, 2056, '蕉岭', '蕉岭县', '中国,广东省,梅州市,蕉岭县', 3, 'jiaoling', '0753', '514100', 'J', '116.17089', '24.65732');
INSERT INTO `tb_region` VALUES (2064, 2056, '兴宁', '兴宁市', '中国,广东省,梅州市,兴宁市', 3, 'xingning', '0753', '514500', 'X', '115.73141', '24.14001');
INSERT INTO `tb_region` VALUES (2065, 1964, '汕尾', '汕尾市', '中国,广东省,汕尾市', 2, 'shanwei', '0660', '516600', 'S', '115.364238', '22.774485');
INSERT INTO `tb_region` VALUES (2066, 2065, '城区', '城区', '中国,广东省,汕尾市,城区', 3, 'chengqu', '0660', '516600', 'C', '115.36503', '22.7789');
INSERT INTO `tb_region` VALUES (2067, 2065, '海丰', '海丰县', '中国,广东省,汕尾市,海丰县', 3, 'haifeng', '0660', '516400', 'H', '115.32336', '22.96653');
INSERT INTO `tb_region` VALUES (2068, 2065, '陆河', '陆河县', '中国,广东省,汕尾市,陆河县', 3, 'luhe', '0660', '516700', 'L', '115.65597', '23.30365');
INSERT INTO `tb_region` VALUES (2069, 2065, '陆丰', '陆丰市', '中国,广东省,汕尾市,陆丰市', 3, 'lufeng', '0660', '516500', 'L', '115.64813', '22.94335');
INSERT INTO `tb_region` VALUES (2070, 1964, '河源', '河源市', '中国,广东省,河源市', 2, 'heyuan', '0762', '517000', 'H', '114.697802', '23.746266');
INSERT INTO `tb_region` VALUES (2071, 2070, '源城', '源城区', '中国,广东省,河源市,源城区', 3, 'yuancheng', '0762', '517000', 'Y', '114.70242', '23.7341');
INSERT INTO `tb_region` VALUES (2072, 2070, '紫金', '紫金县', '中国,广东省,河源市,紫金县', 3, 'zijin', '0762', '517400', 'Z', '115.18365', '23.63867');
INSERT INTO `tb_region` VALUES (2073, 2070, '龙川', '龙川县', '中国,广东省,河源市,龙川县', 3, 'longchuan', '0762', '517300', 'L', '115.26025', '24.10142');
INSERT INTO `tb_region` VALUES (2074, 2070, '连平', '连平县', '中国,广东省,河源市,连平县', 3, 'lianping', '0762', '517100', 'L', '114.49026', '24.37156');
INSERT INTO `tb_region` VALUES (2075, 2070, '和平', '和平县', '中国,广东省,河源市,和平县', 3, 'heping', '0762', '517200', 'H', '114.93841', '24.44319');
INSERT INTO `tb_region` VALUES (2076, 2070, '东源', '东源县', '中国,广东省,河源市,东源县', 3, 'dongyuan', '0762', '517583', 'D', '114.74633', '23.78835');
INSERT INTO `tb_region` VALUES (2077, 1964, '阳江', '阳江市', '中国,广东省,阳江市', 2, 'yangjiang', '0662', '529500', 'Y', '111.975107', '21.859222');
INSERT INTO `tb_region` VALUES (2078, 2077, '江城', '江城区', '中国,广东省,阳江市,江城区', 3, 'jiangcheng', '0662', '529500', 'J', '111.95488', '21.86193');
INSERT INTO `tb_region` VALUES (2079, 2077, '阳东', '阳东区', '中国,广东省,阳江市,阳东区', 3, 'yangdong', '0662', '529900', 'Y', '112.01467', '21.87398');
INSERT INTO `tb_region` VALUES (2080, 2077, '阳西', '阳西县', '中国,广东省,阳江市,阳西县', 3, 'yangxi', '0662', '529800', 'Y', '111.61785', '21.75234');
INSERT INTO `tb_region` VALUES (2081, 2077, '阳春', '阳春市', '中国,广东省,阳江市,阳春市', 3, 'yangchun', '0662', '529600', 'Y', '111.78854', '22.17232');
INSERT INTO `tb_region` VALUES (2082, 1964, '清远', '清远市', '中国,广东省,清远市', 2, 'qingyuan', '0763', '511500', 'Q', '113.036779', '23.704188');
INSERT INTO `tb_region` VALUES (2083, 2082, '清城', '清城区', '中国,广东省,清远市,清城区', 3, 'qingcheng', '0763', '511515', 'Q', '113.06265', '23.69784');
INSERT INTO `tb_region` VALUES (2084, 2082, '清新', '清新区', '中国,广东省,清远市,清新区', 3, 'qingxin', '0763', '511810', 'Q', '113.015203', '23.736949');
INSERT INTO `tb_region` VALUES (2085, 2082, '佛冈', '佛冈县', '中国,广东省,清远市,佛冈县', 3, 'fogang', '0763', '511600', 'F', '113.53286', '23.87231');
INSERT INTO `tb_region` VALUES (2086, 2082, '阳山', '阳山县', '中国,广东省,清远市,阳山县', 3, 'yangshan', '0763', '513100', 'Y', '112.64129', '24.46516');
INSERT INTO `tb_region` VALUES (2087, 2082, '连山', '连山壮族瑶族自治县', '中国,广东省,清远市,连山壮族瑶族自治县', 3, 'lianshan', '0763', '513200', 'L', '112.0802', '24.56807');
INSERT INTO `tb_region` VALUES (2088, 2082, '连南', '连南瑶族自治县', '中国,广东省,清远市,连南瑶族自治县', 3, 'liannan', '0763', '513300', 'L', '112.28842', '24.71726');
INSERT INTO `tb_region` VALUES (2089, 2082, '英德', '英德市', '中国,广东省,清远市,英德市', 3, 'yingde', '0763', '513000', 'Y', '113.415', '24.18571');
INSERT INTO `tb_region` VALUES (2090, 2082, '连州', '连州市', '中国,广东省,清远市,连州市', 3, 'lianzhou', '0763', '513400', 'L', '112.38153', '24.77913');
INSERT INTO `tb_region` VALUES (2091, 1964, '东莞', '东莞市', '中国,广东省,东莞市', 2, 'dongguan', '0769', '523888', 'D', '113.760234', '23.048884');
INSERT INTO `tb_region` VALUES (2092, 2091, '莞城', '莞城区', '中国,广东省,东莞市,莞城区', 3, 'guancheng', '0769', '523128', 'G', '113.751043', '23.053412');
INSERT INTO `tb_region` VALUES (2093, 2091, '南城', '南城区', '中国,广东省,东莞市,南城区', 3, 'nancheng', '0769', '523617', 'N', '113.752125', '23.02018');
INSERT INTO `tb_region` VALUES (2094, 2091, '万江', '万江区', '中国,广东省,东莞市,万江区', 3, 'wanjiang', '0769', '523039', 'W', '113.739053', '23.043842');
INSERT INTO `tb_region` VALUES (2095, 2091, '石碣', '石碣镇', '中国,广东省,东莞市,石碣镇', 3, 'shijie', '0769', '523290', 'S', '113.80217', '23.09899');
INSERT INTO `tb_region` VALUES (2096, 2091, '石龙', '石龙镇', '中国,广东省,东莞市,石龙镇', 3, 'shilong', '0769', '523326', 'S', '113.876381', '23.107444');
INSERT INTO `tb_region` VALUES (2097, 2091, '茶山', '茶山镇', '中国,广东省,东莞市,茶山镇', 3, 'chashan', '0769', '523380', 'C', '113.883526', '23.062375');
INSERT INTO `tb_region` VALUES (2098, 2091, '石排', '石排镇', '中国,广东省,东莞市,石排镇', 3, 'shipai', '0769', '523346', 'S', '113.919859', '23.0863');
INSERT INTO `tb_region` VALUES (2099, 2091, '企石', '企石镇', '中国,广东省,东莞市,企石镇', 3, 'qishi', '0769', '523507', 'Q', '114.013233', '23.066044');
INSERT INTO `tb_region` VALUES (2100, 2091, '横沥', '横沥镇', '中国,广东省,东莞市,横沥镇', 3, 'hengli', '0769', '523471', 'H', '113.957436', '23.025732');
INSERT INTO `tb_region` VALUES (2101, 2091, '桥头', '桥头镇', '中国,广东省,东莞市,桥头镇', 3, 'qiaotou', '0769', '523520', 'Q', '114.01385', '22.939727');
INSERT INTO `tb_region` VALUES (2102, 2091, '谢岗', '谢岗镇', '中国,广东省,东莞市,谢岗镇', 3, 'xiegang', '0769', '523592', 'X', '114.141396', '22.959664');
INSERT INTO `tb_region` VALUES (2103, 2091, '东坑', '东坑镇', '中国,广东省,东莞市,东坑镇', 3, 'dongkeng', '0769', '523451', 'D', '113.939835', '22.992804');
INSERT INTO `tb_region` VALUES (2104, 2091, '常平', '常平镇', '中国,广东省,东莞市,常平镇', 3, 'changping', '0769', '523560', 'C', '114.029627', '23.016116');
INSERT INTO `tb_region` VALUES (2105, 2091, '寮步', '寮步镇', '中国,广东省,东莞市,寮步镇', 3, 'liaobu', '0769', '523411', 'L', '113.884745', '22.991738');
INSERT INTO `tb_region` VALUES (2106, 2091, '大朗', '大朗镇', '中国,广东省,东莞市,大朗镇', 3, 'dalang', '0769', '523770', 'D', '113.9271', '22.965748');
INSERT INTO `tb_region` VALUES (2107, 2091, '麻涌', '麻涌镇', '中国,广东省,东莞市,麻涌镇', 3, 'machong', '0769', '523143', 'M', '113.546177', '23.045315');
INSERT INTO `tb_region` VALUES (2108, 2091, '中堂', '中堂镇', '中国,广东省,东莞市,中堂镇', 3, 'zhongtang', '0769', '523233', 'Z', '113.654422', '23.090164');
INSERT INTO `tb_region` VALUES (2109, 2091, '高埗', '高埗镇', '中国,广东省,东莞市,高埗镇', 3, 'gaobu', '0769', '523282', 'G', '113.735917', '23.068415');
INSERT INTO `tb_region` VALUES (2110, 2091, '樟木头', '樟木头镇', '中国,广东省,东莞市,樟木头镇', 3, 'zhangmutou', '0769', '523619', 'Z', '114.066298', '22.956682');
INSERT INTO `tb_region` VALUES (2111, 2091, '大岭山', '大岭山镇', '中国,广东省,东莞市,大岭山镇', 3, 'dalingshan', '0769', '523835', 'D', '113.782955', '22.885366');
INSERT INTO `tb_region` VALUES (2112, 2091, '望牛墩', '望牛墩镇', '中国,广东省,东莞市,望牛墩镇', 3, 'wangniudun', '0769', '523203', 'W', '113.658847', '23.055018');
INSERT INTO `tb_region` VALUES (2113, 2091, '黄江', '黄江镇', '中国,广东省,东莞市,黄江镇', 3, 'huangjiang', '0769', '523755', 'H', '113.992635', '22.877536');
INSERT INTO `tb_region` VALUES (2114, 2091, '洪梅', '洪梅镇', '中国,广东省,东莞市,洪梅镇', 3, 'hongmei', '0769', '523163', 'H', '113.613081', '22.992675');
INSERT INTO `tb_region` VALUES (2115, 2091, '清溪', '清溪镇', '中国,广东省,东莞市,清溪镇', 3, 'qingxi', '0769', '523660', 'Q', '114.155796', '22.844456');
INSERT INTO `tb_region` VALUES (2116, 2091, '沙田', '沙田镇', '中国,广东省,东莞市,沙田镇', 3, 'shatian', '0769', '523988', 'S', '113.760234', '23.048884');
INSERT INTO `tb_region` VALUES (2117, 2091, '道滘', '道滘镇', '中国,广东省,东莞市,道滘镇', 3, 'daojiao', '0769', '523171', 'D', '113.760234', '23.048884');
INSERT INTO `tb_region` VALUES (2118, 2091, '塘厦', '塘厦镇', '中国,广东省,东莞市,塘厦镇', 3, 'tangxia', '0769', '523713', 'T', '114.10765', '22.822862');
INSERT INTO `tb_region` VALUES (2119, 2091, '虎门', '虎门镇', '中国,广东省,东莞市,虎门镇', 3, 'humen', '0769', '523932', 'H', '113.71118', '22.82615');
INSERT INTO `tb_region` VALUES (2120, 2091, '厚街', '厚街镇', '中国,广东省,东莞市,厚街镇', 3, 'houjie', '0769', '523960', 'H', '113.67301', '22.940815');
INSERT INTO `tb_region` VALUES (2121, 2091, '凤岗', '凤岗镇', '中国,广东省,东莞市,凤岗镇', 3, 'fenggang', '0769', '523690', 'F', '114.141194', '22.744598');
INSERT INTO `tb_region` VALUES (2122, 2091, '长安', '长安镇', '中国,广东省,东莞市,长安镇', 3, 'chang\'an', '0769', '523850', 'C', '113.803939', '22.816644');
INSERT INTO `tb_region` VALUES (2123, 1964, '中山', '中山市', '中国,广东省,中山市', 2, 'zhongshan', '0760', '528403', 'Z', '113.382391', '22.521113');
INSERT INTO `tb_region` VALUES (2124, 2123, '石岐', '石岐区', '中国,广东省,中山市,石岐区', 3, 'shiqi', '0760', '528400', 'S', '113.378835', '22.52522');
INSERT INTO `tb_region` VALUES (2125, 2123, '南区', '南区', '中国,广东省,中山市,南区', 3, 'nanqu', '0760', '528400', 'N', '113.355896', '22.486568');
INSERT INTO `tb_region` VALUES (2126, 2123, '五桂山', '五桂山区', '中国,广东省,中山市,五桂山区', 3, 'wuguishan', '0760', '528458', 'W', '113.41079', '22.51968');
INSERT INTO `tb_region` VALUES (2127, 2123, '火炬', '火炬开发区', '中国,广东省,中山市,火炬开发区', 3, 'huoju', '0760', '528437', 'H', '113.480523', '22.566082');
INSERT INTO `tb_region` VALUES (2128, 2123, '黄圃', '黄圃镇', '中国,广东省,中山市,黄圃镇', 3, 'huangpu', '0760', '528429', 'H', '113.342359', '22.715116');
INSERT INTO `tb_region` VALUES (2129, 2123, '南头', '南头镇', '中国,广东省,中山市,南头镇', 3, 'nantou', '0760', '528421', 'N', '113.296358', '22.713907');
INSERT INTO `tb_region` VALUES (2130, 2123, '东凤', '东凤镇', '中国,广东省,中山市,东凤镇', 3, 'dongfeng', '0760', '528425', 'D', '113.26114', '22.68775');
INSERT INTO `tb_region` VALUES (2131, 2123, '阜沙', '阜沙镇', '中国,广东省,中山市,阜沙镇', 3, 'fusha', '0760', '528434', 'F', '113.353024', '22.666364');
INSERT INTO `tb_region` VALUES (2132, 2123, '小榄', '小榄镇', '中国,广东省,中山市,小榄镇', 3, 'xiaolan', '0760', '528415', 'X', '113.244235', '22.666951');
INSERT INTO `tb_region` VALUES (2133, 2123, '东升', '东升镇', '中国,广东省,中山市,东升镇', 3, 'dongsheng', '0760', '528400', 'D', '113.296298', '22.614003');
INSERT INTO `tb_region` VALUES (2134, 2123, '古镇', '古镇镇', '中国,广东省,中山市,古镇镇', 3, 'guzhen', '0760', '528422', 'G', '113.179745', '22.611019');
INSERT INTO `tb_region` VALUES (2135, 2123, '横栏', '横栏镇', '中国,广东省,中山市,横栏镇', 3, 'henglan', '0760', '528478', 'H', '113.265845', '22.523202');
INSERT INTO `tb_region` VALUES (2136, 2123, '三角', '三角镇', '中国,广东省,中山市,三角镇', 3, 'sanjiao', '0760', '528422', 'S', '113.423624', '22.677033');
INSERT INTO `tb_region` VALUES (2137, 2123, '民众', '民众镇', '中国,广东省,中山市,民众镇', 3, 'minzhong', '0760', '528441', 'M', '113.486025', '22.623468');
INSERT INTO `tb_region` VALUES (2138, 2123, '南朗', '南朗镇', '中国,广东省,中山市,南朗镇', 3, 'nanlang', '0760', '528454', 'N', '113.533939', '22.492378');
INSERT INTO `tb_region` VALUES (2139, 2123, '港口', '港口镇', '中国,广东省,中山市,港口镇', 3, 'gangkou', '0760', '528447', 'G', '113.382391', '22.521113');
INSERT INTO `tb_region` VALUES (2140, 2123, '大涌', '大涌镇', '中国,广东省,中山市,大涌镇', 3, 'dayong', '0760', '528476', 'D', '113.291708', '22.467712');
INSERT INTO `tb_region` VALUES (2141, 2123, '沙溪', '沙溪镇', '中国,广东省,中山市,沙溪镇', 3, 'shaxi', '0760', '528471', 'S', '113.328369', '22.526325');
INSERT INTO `tb_region` VALUES (2142, 2123, '三乡', '三乡镇', '中国,广东省,中山市,三乡镇', 3, 'sanxiang', '0760', '528463', 'S', '113.4334', '22.352494');
INSERT INTO `tb_region` VALUES (2143, 2123, '板芙', '板芙镇', '中国,广东省,中山市,板芙镇', 3, 'banfu', '0760', '528459', 'B', '113.320346', '22.415674');
INSERT INTO `tb_region` VALUES (2144, 2123, '神湾', '神湾镇', '中国,广东省,中山市,神湾镇', 3, 'shenwan', '0760', '528462', 'S', '113.359387', '22.312476');
INSERT INTO `tb_region` VALUES (2145, 2123, '坦洲', '坦洲镇', '中国,广东省,中山市,坦洲镇', 3, 'tanzhou', '0760', '528467', 'T', '113.485677', '22.261269');
INSERT INTO `tb_region` VALUES (2146, 1964, '潮州', '潮州市', '中国,广东省,潮州市', 2, 'chaozhou', '0768', '521000', 'C', '116.632301', '23.661701');
INSERT INTO `tb_region` VALUES (2147, 2146, '湘桥', '湘桥区', '中国,广东省,潮州市,湘桥区', 3, 'xiangqiao', '0768', '521000', 'X', '116.62805', '23.67451');
INSERT INTO `tb_region` VALUES (2148, 2146, '潮安', '潮安区', '中国,广东省,潮州市,潮安区', 3, 'chao\'an', '0768', '515638', 'C', '116.592895', '23.643656');
INSERT INTO `tb_region` VALUES (2149, 2146, '饶平', '饶平县', '中国,广东省,潮州市,饶平县', 3, 'raoping', '0768', '515700', 'R', '117.00692', '23.66994');
INSERT INTO `tb_region` VALUES (2150, 1964, '揭阳', '揭阳市', '中国,广东省,揭阳市', 2, 'jieyang', '0633', '522000', 'J', '116.355733', '23.543778');
INSERT INTO `tb_region` VALUES (2151, 2150, '榕城', '榕城区', '中国,广东省,揭阳市,榕城区', 3, 'rongcheng', '0633', '522000', 'R', '116.3671', '23.52508');
INSERT INTO `tb_region` VALUES (2152, 2150, '揭东', '揭东区', '中国,广东省,揭阳市,揭东区', 3, 'jiedong', '0633', '515500', 'J', '116.412947', '23.569887');
INSERT INTO `tb_region` VALUES (2153, 2150, '揭西', '揭西县', '中国,广东省,揭阳市,揭西县', 3, 'jiexi', '0633', '515400', 'J', '115.83883', '23.42714');
INSERT INTO `tb_region` VALUES (2154, 2150, '惠来', '惠来县', '中国,广东省,揭阳市,惠来县', 3, 'huilai', '0633', '515200', 'H', '116.29599', '23.03289');
INSERT INTO `tb_region` VALUES (2155, 2150, '普宁', '普宁市', '中国,广东省,揭阳市,普宁市', 3, 'puning', '0633', '515300', 'P', '116.16564', '23.29732');
INSERT INTO `tb_region` VALUES (2156, 1964, '云浮', '云浮市', '中国,广东省,云浮市', 2, 'yunfu', '0766', '527300', 'Y', '112.044439', '22.929801');
INSERT INTO `tb_region` VALUES (2157, 2156, '云城', '云城区', '中国,广东省,云浮市,云城区', 3, 'yuncheng', '0766', '527300', 'Y', '112.03908', '22.92996');
INSERT INTO `tb_region` VALUES (2158, 2156, '云安', '云安区', '中国,广东省,云浮市,云安区', 3, 'yun\'an', '0766', '527500', 'Y', '112.00936', '23.07779');
INSERT INTO `tb_region` VALUES (2159, 2156, '新兴', '新兴县', '中国,广东省,云浮市,新兴县', 3, 'xinxing', '0766', '527400', 'X', '112.23019', '22.69734');
INSERT INTO `tb_region` VALUES (2160, 2156, '郁南', '郁南县', '中国,广东省,云浮市,郁南县', 3, 'yunan', '0766', '527100', 'Y', '111.53387', '23.23307');
INSERT INTO `tb_region` VALUES (2161, 2156, '罗定', '罗定市', '中国,广东省,云浮市,罗定市', 3, 'luoding', '0766', '527200', 'L', '111.56979', '22.76967');
INSERT INTO `tb_region` VALUES (2162, 0, '广西', '广西壮族自治区', '中国,广西壮族自治区', 1, 'guangxi', '', '', 'G', '108.320004', '22.82402');
INSERT INTO `tb_region` VALUES (2163, 2162, '南宁', '南宁市', '中国,广西壮族自治区,南宁市', 2, 'nanning', '0771', '530028', 'N', '108.320004', '22.82402');
INSERT INTO `tb_region` VALUES (2164, 2163, '兴宁', '兴宁区', '中国,广西壮族自治区,南宁市,兴宁区', 3, 'xingning', '0771', '530023', 'X', '108.36694', '22.85355');
INSERT INTO `tb_region` VALUES (2165, 2163, '青秀', '青秀区', '中国,广西壮族自治区,南宁市,青秀区', 3, 'qingxiu', '0771', '530213', 'Q', '108.49545', '22.78511');
INSERT INTO `tb_region` VALUES (2166, 2163, '江南', '江南区', '中国,广西壮族自治区,南宁市,江南区', 3, 'jiangnan', '0771', '530031', 'J', '108.27325', '22.78127');
INSERT INTO `tb_region` VALUES (2167, 2163, '西乡塘', '西乡塘区', '中国,广西壮族自治区,南宁市,西乡塘区', 3, 'xixiangtang', '0771', '530001', 'X', '108.31347', '22.83386');
INSERT INTO `tb_region` VALUES (2168, 2163, '良庆', '良庆区', '中国,广西壮族自治区,南宁市,良庆区', 3, 'liangqing', '0771', '530219', 'L', '108.41284', '22.74914');
INSERT INTO `tb_region` VALUES (2169, 2163, '邕宁', '邕宁区', '中国,广西壮族自治区,南宁市,邕宁区', 3, 'yongning', '0771', '530200', 'Y', '108.48684', '22.75628');
INSERT INTO `tb_region` VALUES (2170, 2163, '武鸣', '武鸣县', '中国,广西壮族自治区,南宁市,武鸣县', 3, 'wuming', '0771', '530100', 'W', '108.27719', '23.15643');
INSERT INTO `tb_region` VALUES (2171, 2163, '隆安', '隆安县', '中国,广西壮族自治区,南宁市,隆安县', 3, 'long\'an', '0771', '532700', 'L', '107.69192', '23.17336');
INSERT INTO `tb_region` VALUES (2172, 2163, '马山', '马山县', '中国,广西壮族自治区,南宁市,马山县', 3, 'mashan', '0771', '530600', 'M', '108.17697', '23.70931');
INSERT INTO `tb_region` VALUES (2173, 2163, '上林', '上林县', '中国,广西壮族自治区,南宁市,上林县', 3, 'shanglin', '0771', '530500', 'S', '108.60522', '23.432');
INSERT INTO `tb_region` VALUES (2174, 2163, '宾阳', '宾阳县', '中国,广西壮族自治区,南宁市,宾阳县', 3, 'binyang', '0771', '530400', 'B', '108.81185', '23.2196');
INSERT INTO `tb_region` VALUES (2175, 2163, '横县', '横县', '中国,广西壮族自治区,南宁市,横县', 3, 'hengxian', '0771', '530300', 'H', '109.26608', '22.68448');
INSERT INTO `tb_region` VALUES (2176, 2163, '埌东', '埌东新区', '中国,广西壮族自治区,南宁市,埌东新区', 3, 'langdong', '0771', '530000', 'L', '108.419094', '22.812976');
INSERT INTO `tb_region` VALUES (2177, 2162, '柳州', '柳州市', '中国,广西壮族自治区,柳州市', 2, 'liuzhou', '0772', '545001', 'L', '109.411703', '24.314617');
INSERT INTO `tb_region` VALUES (2178, 2177, '城中', '城中区', '中国,广西壮族自治区,柳州市,城中区', 3, 'chengzhong', '0772', '545001', 'C', '109.41082', '24.31543');
INSERT INTO `tb_region` VALUES (2179, 2177, '鱼峰', '鱼峰区', '中国,广西壮族自治区,柳州市,鱼峰区', 3, 'yufeng', '0772', '545005', 'Y', '109.4533', '24.31868');
INSERT INTO `tb_region` VALUES (2180, 2177, '柳南', '柳南区', '中国,广西壮族自治区,柳州市,柳南区', 3, 'liunan', '0772', '545007', 'L', '109.38548', '24.33599');
INSERT INTO `tb_region` VALUES (2181, 2177, '柳北', '柳北区', '中国,广西壮族自治区,柳州市,柳北区', 3, 'liubei', '0772', '545002', 'L', '109.40202', '24.36267');
INSERT INTO `tb_region` VALUES (2182, 2177, '柳江', '柳江县', '中国,广西壮族自治区,柳州市,柳江县', 3, 'liujiang', '0772', '545100', 'L', '109.33273', '24.25596');
INSERT INTO `tb_region` VALUES (2183, 2177, '柳城', '柳城县', '中国,广西壮族自治区,柳州市,柳城县', 3, 'liucheng', '0772', '545200', 'L', '109.23877', '24.64951');
INSERT INTO `tb_region` VALUES (2184, 2177, '鹿寨', '鹿寨县', '中国,广西壮族自治区,柳州市,鹿寨县', 3, 'luzhai', '0772', '545600', 'L', '109.75177', '24.47306');
INSERT INTO `tb_region` VALUES (2185, 2177, '融安', '融安县', '中国,广西壮族自治区,柳州市,融安县', 3, 'rong\'an', '0772', '545400', 'R', '109.39761', '25.22465');
INSERT INTO `tb_region` VALUES (2186, 2177, '融水', '融水苗族自治县', '中国,广西壮族自治区,柳州市,融水苗族自治县', 3, 'rongshui', '0772', '545300', 'R', '109.25634', '25.06628');
INSERT INTO `tb_region` VALUES (2187, 2177, '三江', '三江侗族自治县', '中国,广西壮族自治区,柳州市,三江侗族自治县', 3, 'sanjiang', '0772', '545500', 'S', '109.60446', '25.78428');
INSERT INTO `tb_region` VALUES (2188, 2177, '柳东', '柳东新区', '中国,广西壮族自治区,柳州市,柳东新区', 3, 'liudong', '0772', '545000', 'L', '109.437053', '24.329204');
INSERT INTO `tb_region` VALUES (2189, 2162, '桂林', '桂林市', '中国,广西壮族自治区,桂林市', 2, 'guilin', '0773', '541100', 'G', '110.299121', '25.274215');
INSERT INTO `tb_region` VALUES (2190, 2189, '秀峰', '秀峰区', '中国,广西壮族自治区,桂林市,秀峰区', 3, 'xiufeng', '0773', '541001', 'X', '110.28915', '25.28249');
INSERT INTO `tb_region` VALUES (2191, 2189, '叠彩', '叠彩区', '中国,广西壮族自治区,桂林市,叠彩区', 3, 'diecai', '0773', '541001', 'D', '110.30195', '25.31381');
INSERT INTO `tb_region` VALUES (2192, 2189, '象山', '象山区', '中国,广西壮族自治区,桂林市,象山区', 3, 'xiangshan', '0773', '541002', 'X', '110.28108', '25.26168');
INSERT INTO `tb_region` VALUES (2193, 2189, '七星', '七星区', '中国,广西壮族自治区,桂林市,七星区', 3, 'qixing', '0773', '541004', 'Q', '110.31793', '25.2525');
INSERT INTO `tb_region` VALUES (2194, 2189, '雁山', '雁山区', '中国,广西壮族自治区,桂林市,雁山区', 3, 'yanshan', '0773', '541006', 'Y', '110.30911', '25.06038');
INSERT INTO `tb_region` VALUES (2195, 2189, '临桂', '临桂区', '中国,广西壮族自治区,桂林市,临桂区', 3, 'lingui', '0773', '541100', 'L', '110.205487', '25.246257');
INSERT INTO `tb_region` VALUES (2196, 2189, '阳朔', '阳朔县', '中国,广西壮族自治区,桂林市,阳朔县', 3, 'yangshuo', '0773', '541900', 'Y', '110.49475', '24.77579');
INSERT INTO `tb_region` VALUES (2197, 2189, '灵川', '灵川县', '中国,广西壮族自治区,桂林市,灵川县', 3, 'lingchuan', '0773', '541200', 'L', '110.32949', '25.41292');
INSERT INTO `tb_region` VALUES (2198, 2189, '全州', '全州县', '中国,广西壮族自治区,桂林市,全州县', 3, 'quanzhou', '0773', '541503', 'Q', '111.07211', '25.92799');
INSERT INTO `tb_region` VALUES (2199, 2189, '兴安', '兴安县', '中国,广西壮族自治区,桂林市,兴安县', 3, 'xing\'an', '0773', '541300', 'X', '110.67144', '25.61167');
INSERT INTO `tb_region` VALUES (2200, 2189, '永福', '永福县', '中国,广西壮族自治区,桂林市,永福县', 3, 'yongfu', '0773', '541800', 'Y', '109.98333', '24.98004');
INSERT INTO `tb_region` VALUES (2201, 2189, '灌阳', '灌阳县', '中国,广西壮族自治区,桂林市,灌阳县', 3, 'guanyang', '0773', '541600', 'G', '111.15954', '25.48803');
INSERT INTO `tb_region` VALUES (2202, 2189, '龙胜', '龙胜各族自治县', '中国,广西壮族自治区,桂林市,龙胜各族自治县', 3, 'longsheng', '0773', '541700', 'L', '110.01226', '25.79614');
INSERT INTO `tb_region` VALUES (2203, 2189, '资源', '资源县', '中国,广西壮族自治区,桂林市,资源县', 3, 'ziyuan', '0773', '541400', 'Z', '110.65255', '26.04237');
INSERT INTO `tb_region` VALUES (2204, 2189, '平乐', '平乐县', '中国,广西壮族自治区,桂林市,平乐县', 3, 'pingle', '0773', '542400', 'P', '110.64175', '24.63242');
INSERT INTO `tb_region` VALUES (2205, 2189, '荔浦', '荔浦县', '中国,广西壮族自治区,桂林市,荔浦县', 3, 'lipu', '0773', '546600', 'L', '110.3971', '24.49589');
INSERT INTO `tb_region` VALUES (2206, 2189, '恭城', '恭城瑶族自治县', '中国,广西壮族自治区,桂林市,恭城瑶族自治县', 3, 'gongcheng', '0773', '542500', 'G', '110.83035', '24.83286');
INSERT INTO `tb_region` VALUES (2207, 2162, '梧州', '梧州市', '中国,广西壮族自治区,梧州市', 2, 'wuzhou', '0774', '543002', 'W', '111.316229', '23.472309');
INSERT INTO `tb_region` VALUES (2208, 2207, '万秀', '万秀区', '中国,广西壮族自治区,梧州市,万秀区', 3, 'wanxiu', '0774', '543000', 'W', '111.32052', '23.47298');
INSERT INTO `tb_region` VALUES (2209, 2207, '长洲', '长洲区', '中国,广西壮族自治区,梧州市,长洲区', 3, 'changzhou', '0774', '543003', 'C', '111.27494', '23.48573');
INSERT INTO `tb_region` VALUES (2210, 2207, '龙圩', '龙圩区', '中国,广西壮族自治区,梧州市,龙圩区', 3, 'longxu', '0774', '543002', 'L', '111.316229', '23.472309');
INSERT INTO `tb_region` VALUES (2211, 2207, '苍梧', '苍梧县', '中国,广西壮族自治区,梧州市,苍梧县', 3, 'cangwu', '0774', '543100', 'C', '111.24533', '23.42049');
INSERT INTO `tb_region` VALUES (2212, 2207, '藤县', '藤县', '中国,广西壮族自治区,梧州市,藤县', 3, 'tengxian', '0774', '543300', 'T', '110.91418', '23.37605');
INSERT INTO `tb_region` VALUES (2213, 2207, '蒙山', '蒙山县', '中国,广西壮族自治区,梧州市,蒙山县', 3, 'mengshan', '0774', '546700', 'M', '110.52221', '24.20168');
INSERT INTO `tb_region` VALUES (2214, 2207, '岑溪', '岑溪市', '中国,广西壮族自治区,梧州市,岑溪市', 3, 'cenxi', '0774', '543200', 'C', '110.99594', '22.9191');
INSERT INTO `tb_region` VALUES (2215, 2162, '北海', '北海市', '中国,广西壮族自治区,北海市', 2, 'beihai', '0779', '536000', 'B', '109.119254', '21.473343');
INSERT INTO `tb_region` VALUES (2216, 2215, '海城', '海城区', '中国,广西壮族自治区,北海市,海城区', 3, 'haicheng', '0779', '536000', 'H', '109.11744', '21.47501');
INSERT INTO `tb_region` VALUES (2217, 2215, '银海', '银海区', '中国,广西壮族自治区,北海市,银海区', 3, 'yinhai', '0779', '536000', 'Y', '109.13029', '21.4783');
INSERT INTO `tb_region` VALUES (2218, 2215, '铁山港', '铁山港区', '中国,广西壮族自治区,北海市,铁山港区', 3, 'tieshangang', '0779', '536017', 'T', '109.45578', '21.59661');
INSERT INTO `tb_region` VALUES (2219, 2215, '合浦', '合浦县', '中国,广西壮族自治区,北海市,合浦县', 3, 'hepu', '0779', '536100', 'H', '109.20068', '21.66601');
INSERT INTO `tb_region` VALUES (2220, 2162, '防城港', '防城港市', '中国,广西壮族自治区,防城港市', 2, 'fangchenggang', '0770', '538001', 'F', '108.345478', '21.614631');
INSERT INTO `tb_region` VALUES (2221, 2220, '港口', '港口区', '中国,广西壮族自治区,防城港市,港口区', 3, 'gangkou', '0770', '538001', 'G', '108.38022', '21.64342');
INSERT INTO `tb_region` VALUES (2222, 2220, '防城', '防城区', '中国,广西壮族自治区,防城港市,防城区', 3, 'fangcheng', '0770', '538021', 'F', '108.35726', '21.76464');
INSERT INTO `tb_region` VALUES (2223, 2220, '上思', '上思县', '中国,广西壮族自治区,防城港市,上思县', 3, 'shangsi', '0770', '535500', 'S', '107.9823', '22.14957');
INSERT INTO `tb_region` VALUES (2224, 2220, '东兴', '东兴市', '中国,广西壮族自治区,防城港市,东兴市', 3, 'dongxing', '0770', '538100', 'D', '107.97204', '21.54713');
INSERT INTO `tb_region` VALUES (2225, 2162, '钦州', '钦州市', '中国,广西壮族自治区,钦州市', 2, 'qinzhou', '0777', '535099', 'Q', '108.624175', '21.967127');
INSERT INTO `tb_region` VALUES (2226, 2225, '钦南', '钦南区', '中国,广西壮族自治区,钦州市,钦南区', 3, 'qinnan', '0777', '535099', 'Q', '108.61775', '21.95137');
INSERT INTO `tb_region` VALUES (2227, 2225, '钦北', '钦北区', '中国,广西壮族自治区,钦州市,钦北区', 3, 'qinbei', '0777', '535099', 'Q', '108.63037', '21.95127');
INSERT INTO `tb_region` VALUES (2228, 2225, '灵山', '灵山县', '中国,广西壮族自治区,钦州市,灵山县', 3, 'lingshan', '0777', '535099', 'L', '109.29153', '22.4165');
INSERT INTO `tb_region` VALUES (2229, 2225, '浦北', '浦北县', '中国,广西壮族自治区,钦州市,浦北县', 3, 'pubei', '0777', '535099', 'P', '109.55572', '22.26888');
INSERT INTO `tb_region` VALUES (2230, 2162, '贵港', '贵港市', '中国,广西壮族自治区,贵港市', 2, 'guigang', '0775', '537100', 'G', '109.602146', '23.0936');
INSERT INTO `tb_region` VALUES (2231, 2230, '港北', '港北区', '中国,广西壮族自治区,贵港市,港北区', 3, 'gangbei', '0775', '537100', 'G', '109.57224', '23.11153');
INSERT INTO `tb_region` VALUES (2232, 2230, '港南', '港南区', '中国,广西壮族自治区,贵港市,港南区', 3, 'gangnan', '0775', '537100', 'G', '109.60617', '23.07226');
INSERT INTO `tb_region` VALUES (2233, 2230, '覃塘', '覃塘区', '中国,广西壮族自治区,贵港市,覃塘区', 3, 'qintang', '0775', '537121', 'Q', '109.44293', '23.12677');
INSERT INTO `tb_region` VALUES (2234, 2230, '平南', '平南县', '中国,广西壮族自治区,贵港市,平南县', 3, 'pingnan', '0775', '537300', 'P', '110.39062', '23.54201');
INSERT INTO `tb_region` VALUES (2235, 2230, '桂平', '桂平市', '中国,广西壮族自治区,贵港市,桂平市', 3, 'guiping', '0775', '537200', 'G', '110.08105', '23.39339');
INSERT INTO `tb_region` VALUES (2236, 2162, '玉林', '玉林市', '中国,广西壮族自治区,玉林市', 2, 'yulin', '0775', '537000', 'Y', '110.154393', '22.63136');
INSERT INTO `tb_region` VALUES (2237, 2236, '玉州', '玉州区', '中国,广西壮族自治区,玉林市,玉州区', 3, 'yuzhou', '0775', '537000', 'Y', '110.15114', '22.6281');
INSERT INTO `tb_region` VALUES (2238, 2236, '福绵', '福绵区', '中国,广西壮族自治区,玉林市,福绵区', 3, 'fumian', '0775', '537023', 'F', '110.064816', '22.583057');
INSERT INTO `tb_region` VALUES (2239, 2236, '玉东', '玉东新区', '中国,广西壮族自治区,玉林市,玉东新区', 3, 'yudong', '0775', '537000', 'Y', '110.154393', '22.63136');
INSERT INTO `tb_region` VALUES (2240, 2236, '容县', '容县', '中国,广西壮族自治区,玉林市,容县', 3, 'rongxian', '0775', '537500', 'R', '110.55593', '22.85701');
INSERT INTO `tb_region` VALUES (2241, 2236, '陆川', '陆川县', '中国,广西壮族自治区,玉林市,陆川县', 3, 'luchuan', '0775', '537700', 'L', '110.26413', '22.32454');
INSERT INTO `tb_region` VALUES (2242, 2236, '博白', '博白县', '中国,广西壮族自治区,玉林市,博白县', 3, 'bobai', '0775', '537600', 'B', '109.97744', '22.27286');
INSERT INTO `tb_region` VALUES (2243, 2236, '兴业', '兴业县', '中国,广西壮族自治区,玉林市,兴业县', 3, 'xingye', '0775', '537800', 'X', '109.87612', '22.74237');
INSERT INTO `tb_region` VALUES (2244, 2236, '北流', '北流市', '中国,广西壮族自治区,玉林市,北流市', 3, 'beiliu', '0775', '537400', 'B', '110.35302', '22.70817');
INSERT INTO `tb_region` VALUES (2245, 2162, '百色', '百色市', '中国,广西壮族自治区,百色市', 2, 'baise', '0776', '533000', 'B', '106.616285', '23.897742');
INSERT INTO `tb_region` VALUES (2246, 2245, '右江', '右江区', '中国,广西壮族自治区,百色市,右江区', 3, 'youjiang', '0776', '533000', 'Y', '106.61764', '23.9009');
INSERT INTO `tb_region` VALUES (2247, 2245, '田阳', '田阳县', '中国,广西壮族自治区,百色市,田阳县', 3, 'tianyang', '0776', '533600', 'T', '106.91558', '23.73535');
INSERT INTO `tb_region` VALUES (2248, 2245, '田东', '田东县', '中国,广西壮族自治区,百色市,田东县', 3, 'tiandong', '0776', '531500', 'T', '107.12432', '23.60003');
INSERT INTO `tb_region` VALUES (2249, 2245, '平果', '平果县', '中国,广西壮族自治区,百色市,平果县', 3, 'pingguo', '0776', '531400', 'P', '107.59045', '23.32969');
INSERT INTO `tb_region` VALUES (2250, 2245, '德保', '德保县', '中国,广西壮族自治区,百色市,德保县', 3, 'debao', '0776', '533700', 'D', '106.61917', '23.32515');
INSERT INTO `tb_region` VALUES (2251, 2245, '靖西', '靖西县', '中国,广西壮族自治区,百色市,靖西县', 3, 'jingxi', '0776', '533800', 'J', '106.41766', '23.13425');
INSERT INTO `tb_region` VALUES (2252, 2245, '那坡', '那坡县', '中国,广西壮族自治区,百色市,那坡县', 3, 'napo', '0776', '533900', 'N', '105.84191', '23.40649');
INSERT INTO `tb_region` VALUES (2253, 2245, '凌云', '凌云县', '中国,广西壮族自治区,百色市,凌云县', 3, 'lingyun', '0776', '533100', 'L', '106.56155', '24.34747');
INSERT INTO `tb_region` VALUES (2254, 2245, '乐业', '乐业县', '中国,广西壮族自治区,百色市,乐业县', 3, 'leye', '0776', '533200', 'L', '106.56124', '24.78295');
INSERT INTO `tb_region` VALUES (2255, 2245, '田林', '田林县', '中国,广西壮族自治区,百色市,田林县', 3, 'tianlin', '0776', '533300', 'T', '106.22882', '24.29207');
INSERT INTO `tb_region` VALUES (2256, 2245, '西林', '西林县', '中国,广西壮族自治区,百色市,西林县', 3, 'xilin', '0776', '533500', 'X', '105.09722', '24.48966');
INSERT INTO `tb_region` VALUES (2257, 2245, '隆林', '隆林各族自治县', '中国,广西壮族自治区,百色市,隆林各族自治县', 3, 'longlin', '0776', '533400', 'L', '105.34295', '24.77036');
INSERT INTO `tb_region` VALUES (2258, 2162, '贺州', '贺州市', '中国,广西壮族自治区,贺州市', 2, 'hezhou', '0774', '542800', 'H', '111.552056', '24.414141');
INSERT INTO `tb_region` VALUES (2259, 2258, '八步', '八步区', '中国,广西壮族自治区,贺州市,八步区', 3, 'babu', '0774', '542800', 'B', '111.55225', '24.41179');
INSERT INTO `tb_region` VALUES (2260, 2258, '昭平', '昭平县', '中国,广西壮族自治区,贺州市,昭平县', 3, 'zhaoping', '0774', '546800', 'Z', '110.81082', '24.1701');
INSERT INTO `tb_region` VALUES (2261, 2258, '钟山', '钟山县', '中国,广西壮族自治区,贺州市,钟山县', 3, 'zhongshan', '0774', '542600', 'Z', '111.30459', '24.52482');
INSERT INTO `tb_region` VALUES (2262, 2258, '富川', '富川瑶族自治县', '中国,广西壮族自治区,贺州市,富川瑶族自治县', 3, 'fuchuan', '0774', '542700', 'F', '111.27767', '24.81431');
INSERT INTO `tb_region` VALUES (2263, 2258, '平桂', '平桂管理区', '中国,广西壮族自治区,贺州市,平桂管理区', 3, 'pingui', '0774', '542800', 'P', '111.485651', '24.458041');
INSERT INTO `tb_region` VALUES (2264, 2162, '河池', '河池市', '中国,广西壮族自治区,河池市', 2, 'hechi', '0778', '547000', 'H', '108.062105', '24.695899');
INSERT INTO `tb_region` VALUES (2265, 2264, '金城江', '金城江区', '中国,广西壮族自治区,河池市,金城江区', 3, 'jinchengjiang', '0779', '547000', 'J', '108.03727', '24.6897');
INSERT INTO `tb_region` VALUES (2266, 2264, '南丹', '南丹县', '中国,广西壮族自治区,河池市,南丹县', 3, 'nandan', '0781', '547200', 'N', '107.54562', '24.9776');
INSERT INTO `tb_region` VALUES (2267, 2264, '天峨', '天峨县', '中国,广西壮族自治区,河池市,天峨县', 3, 'tiane', '0782', '547300', 'T', '107.17205', '24.99593');
INSERT INTO `tb_region` VALUES (2268, 2264, '凤山', '凤山县', '中国,广西壮族自治区,河池市,凤山县', 3, 'fengshan', '0783', '547600', 'F', '107.04892', '24.54215');
INSERT INTO `tb_region` VALUES (2269, 2264, '东兰', '东兰县', '中国,广西壮族自治区,河池市,东兰县', 3, 'donglan', '0784', '547400', 'D', '107.37527', '24.51053');
INSERT INTO `tb_region` VALUES (2270, 2264, '罗城', '罗城仫佬族自治县', '中国,广西壮族自治区,河池市,罗城仫佬族自治县', 3, 'luocheng', '0785', '546400', 'L', '108.90777', '24.77923');
INSERT INTO `tb_region` VALUES (2271, 2264, '环江', '环江毛南族自治县', '中国,广西壮族自治区,河池市,环江毛南族自治县', 3, 'huanjiang', '0786', '547100', 'H', '108.26055', '24.82916');
INSERT INTO `tb_region` VALUES (2272, 2264, '巴马', '巴马瑶族自治县', '中国,广西壮族自治区,河池市,巴马瑶族自治县', 3, 'bama', '0787', '547500', 'B', '107.25308', '24.14135');
INSERT INTO `tb_region` VALUES (2273, 2264, '都安', '都安瑶族自治县', '中国,广西壮族自治区,河池市,都安瑶族自治县', 3, 'du\'an', '0788', '530700', 'D', '108.10116', '23.93245');
INSERT INTO `tb_region` VALUES (2274, 2264, '大化', '大化瑶族自治县', '中国,广西壮族自治区,河池市,大化瑶族自治县', 3, 'dahua', '0789', '530800', 'D', '107.9985', '23.74487');
INSERT INTO `tb_region` VALUES (2275, 2264, '宜州', '宜州市', '中国,广西壮族自治区,河池市,宜州市', 3, 'yizhou', '0780', '546300', 'Y', '108.65304', '24.49391');
INSERT INTO `tb_region` VALUES (2276, 2162, '来宾', '来宾市', '中国,广西壮族自治区,来宾市', 2, 'laibin', '0772', '546100', 'L', '109.229772', '23.733766');
INSERT INTO `tb_region` VALUES (2277, 2276, '兴宾', '兴宾区', '中国,广西壮族自治区,来宾市,兴宾区', 3, 'xingbin', '0772', '546100', 'X', '109.23471', '23.72731');
INSERT INTO `tb_region` VALUES (2278, 2276, '忻城', '忻城县', '中国,广西壮族自治区,来宾市,忻城县', 3, 'xincheng', '0772', '546200', 'X', '108.66357', '24.06862');
INSERT INTO `tb_region` VALUES (2279, 2276, '象州', '象州县', '中国,广西壮族自治区,来宾市,象州县', 3, 'xiangzhou', '0772', '545800', 'X', '109.6994', '23.97355');
INSERT INTO `tb_region` VALUES (2280, 2276, '武宣', '武宣县', '中国,广西壮族自治区,来宾市,武宣县', 3, 'wuxuan', '0772', '545900', 'W', '109.66284', '23.59474');
INSERT INTO `tb_region` VALUES (2281, 2276, '金秀', '金秀瑶族自治县', '中国,广西壮族自治区,来宾市,金秀瑶族自治县', 3, 'jinxiu', '0772', '545799', 'J', '110.19079', '24.12929');
INSERT INTO `tb_region` VALUES (2282, 2276, '合山', '合山市', '中国,广西壮族自治区,来宾市,合山市', 3, 'heshan', '0772', '546500', 'H', '108.88586', '23.80619');
INSERT INTO `tb_region` VALUES (2283, 2162, '崇左', '崇左市', '中国,广西壮族自治区,崇左市', 2, 'chongzuo', '0771', '532299', 'C', '107.353926', '22.404108');
INSERT INTO `tb_region` VALUES (2284, 2283, '江州', '江州区', '中国,广西壮族自治区,崇左市,江州区', 3, 'jiangzhou', '0771', '532299', 'J', '107.34747', '22.41135');
INSERT INTO `tb_region` VALUES (2285, 2283, '扶绥', '扶绥县', '中国,广西壮族自治区,崇左市,扶绥县', 3, 'fusui', '0771', '532199', 'F', '107.90405', '22.63413');
INSERT INTO `tb_region` VALUES (2286, 2283, '宁明', '宁明县', '中国,广西壮族自治区,崇左市,宁明县', 3, 'ningming', '0771', '532599', 'N', '107.07299', '22.13655');
INSERT INTO `tb_region` VALUES (2287, 2283, '龙州', '龙州县', '中国,广西壮族自治区,崇左市,龙州县', 3, 'longzhou', '0771', '532499', 'L', '106.85415', '22.33937');
INSERT INTO `tb_region` VALUES (2288, 2283, '大新', '大新县', '中国,广西壮族自治区,崇左市,大新县', 3, 'daxin', '0771', '532399', 'D', '107.19821', '22.83412');
INSERT INTO `tb_region` VALUES (2289, 2283, '天等', '天等县', '中国,广西壮族自治区,崇左市,天等县', 3, 'tiandeng', '0771', '532899', 'T', '107.13998', '23.077');
INSERT INTO `tb_region` VALUES (2290, 2283, '凭祥', '凭祥市', '中国,广西壮族自治区,崇左市,凭祥市', 3, 'pingxiang', '0771', '532699', 'P', '106.75534', '22.10573');
INSERT INTO `tb_region` VALUES (2291, 0, '海南', '海南省', '中国,海南省', 1, 'hainan', '', '', 'H', '110.33119', '20.031971');
INSERT INTO `tb_region` VALUES (2292, 2291, '海口', '海口市', '中国,海南省,海口市', 2, 'haikou', '0898', '570000', 'H', '110.33119', '20.031971');
INSERT INTO `tb_region` VALUES (2293, 2292, '秀英', '秀英区', '中国,海南省,海口市,秀英区', 3, 'xiuying', '0898', '570311', 'X', '110.29345', '20.00752');
INSERT INTO `tb_region` VALUES (2294, 2292, '龙华', '龙华区', '中国,海南省,海口市,龙华区', 3, 'longhua', '0898', '570145', 'L', '110.30194', '20.02866');
INSERT INTO `tb_region` VALUES (2295, 2292, '琼山', '琼山区', '中国,海南省,海口市,琼山区', 3, 'qiongshan', '0898', '571100', 'Q', '110.35418', '20.00321');
INSERT INTO `tb_region` VALUES (2296, 2292, '美兰', '美兰区', '中国,海南省,海口市,美兰区', 3, 'meilan', '0898', '570203', 'M', '110.36908', '20.02864');
INSERT INTO `tb_region` VALUES (2297, 2291, '三亚', '三亚市', '中国,海南省,三亚市', 2, 'sanya', '0898', '572000', 'S', '109.508268', '18.247872');
INSERT INTO `tb_region` VALUES (2298, 2297, '海棠', '海棠区', '中国,海南省,三亚市,海棠区', 3, 'haitang', '0898', '572000', 'H', '109.508268', '18.247872');
INSERT INTO `tb_region` VALUES (2299, 2297, '吉阳', '吉阳区', '中国,海南省,三亚市,吉阳区', 3, 'jiyang', '0898', '572000', 'J', '109.508268', '18.247872');
INSERT INTO `tb_region` VALUES (2300, 2297, '天涯', '天涯区', '中国,海南省,三亚市,天涯区', 3, 'tianya', '0898', '572000', 'T', '109.508268', '18.247872');
INSERT INTO `tb_region` VALUES (2301, 2297, '崖州', '崖州区', '中国,海南省,三亚市,崖州区', 3, 'yazhou', '0898', '572000', 'Y', '109.508268', '18.247872');
INSERT INTO `tb_region` VALUES (2302, 2291, '三沙', '三沙市', '中国,海南省,三沙市', 2, 'sansha', '0898', '573199', 'S', '112.34882', '16.831039');
INSERT INTO `tb_region` VALUES (2303, 2302, '西沙', '西沙群岛', '中国,海南省,三沙市,西沙群岛', 3, 'xishaislands', '0898', '572000', 'X', '112.025528', '16.331342');
INSERT INTO `tb_region` VALUES (2304, 2302, '南沙', '南沙群岛', '中国,海南省,三沙市,南沙群岛', 3, 'nanshaislands', '0898', '573100', 'N', '116.749998', '11.471888');
INSERT INTO `tb_region` VALUES (2305, 2302, '中沙', '中沙群岛', '中国,海南省,三沙市,中沙群岛', 3, 'zhongshaislands', '0898', '573100', 'Z', '117.740071', '15.112856');
INSERT INTO `tb_region` VALUES (2306, 2291, ' ', '直辖县级', '中国,海南省,直辖县级', 2, '', '', '', 'Z', '109.503479', '18.739906');
INSERT INTO `tb_region` VALUES (2307, 2306, '五指山', '五指山市', '中国,海南省,直辖县级,五指山市', 3, 'wuzhishan', '0898', '572200', 'W', '109.516662', '18.776921');
INSERT INTO `tb_region` VALUES (2308, 2306, '琼海', '琼海市', '中国,海南省,直辖县级,琼海市', 3, 'qionghai', '0898', '571400', 'Q', '110.466785', '19.246011');
INSERT INTO `tb_region` VALUES (2309, 2306, '儋州', '儋州市', '中国,海南省,直辖县级,儋州市', 3, 'danzhou', '0898', '571700', 'D', '109.576782', '19.517486');
INSERT INTO `tb_region` VALUES (2310, 2306, '文昌', '文昌市', '中国,海南省,直辖县级,文昌市', 3, 'wenchang', '0898', '571339', 'W', '110.753975', '19.612986');
INSERT INTO `tb_region` VALUES (2311, 2306, '万宁', '万宁市', '中国,海南省,直辖县级,万宁市', 3, 'wanning', '0898', '571500', 'W', '110.388793', '18.796216');
INSERT INTO `tb_region` VALUES (2312, 2306, '东方', '东方市', '中国,海南省,直辖县级,东方市', 3, 'dongfang', '0898', '572600', 'D', '108.653789', '19.10198');
INSERT INTO `tb_region` VALUES (2313, 2306, '定安', '定安县', '中国,海南省,直辖县级,定安县', 3, 'ding\'an', '0898', '571200', 'D', '110.323959', '19.699211');
INSERT INTO `tb_region` VALUES (2314, 2306, '屯昌', '屯昌县', '中国,海南省,直辖县级,屯昌县', 3, 'tunchang', '0898', '571600', 'T', '110.102773', '19.362916');
INSERT INTO `tb_region` VALUES (2315, 2306, '澄迈', '澄迈县', '中国,海南省,直辖县级,澄迈县', 3, 'chengmai', '0898', '571900', 'C', '110.007147', '19.737095');
INSERT INTO `tb_region` VALUES (2316, 2306, '临高', '临高县', '中国,海南省,直辖县级,临高县', 3, 'lingao', '0898', '571800', 'L', '109.687697', '19.908293');
INSERT INTO `tb_region` VALUES (2317, 2306, '白沙', '白沙黎族自治县', '中国,海南省,直辖县级,白沙黎族自治县', 3, 'baisha', '0898', '572800', 'B', '109.452606', '19.224584');
INSERT INTO `tb_region` VALUES (2318, 2306, '昌江', '昌江黎族自治县', '中国,海南省,直辖县级,昌江黎族自治县', 3, 'changjiang', '0898', '572700', 'C', '109.053351', '19.260968');
INSERT INTO `tb_region` VALUES (2319, 2306, '乐东', '乐东黎族自治县', '中国,海南省,直辖县级,乐东黎族自治县', 3, 'ledong', '0898', '572500', 'L', '109.175444', '18.74758');
INSERT INTO `tb_region` VALUES (2320, 2306, '陵水', '陵水黎族自治县', '中国,海南省,直辖县级,陵水黎族自治县', 3, 'lingshui', '0898', '572400', 'L', '110.037218', '18.505006');
INSERT INTO `tb_region` VALUES (2321, 2306, '保亭', '保亭黎族苗族自治县', '中国,海南省,直辖县级,保亭黎族苗族自治县', 3, 'baoting', '0898', '572300', 'B', '109.70245', '18.636371');
INSERT INTO `tb_region` VALUES (2322, 2306, '琼中', '琼中黎族苗族自治县', '中国,海南省,直辖县级,琼中黎族苗族自治县', 3, 'qiongzhong', '0898', '572900', 'Q', '109.839996', '19.03557');
INSERT INTO `tb_region` VALUES (2323, 0, '重庆', '重庆', '中国,重庆', 1, 'chongqing', '', '', 'Z', '106.504962', '29.533155');
INSERT INTO `tb_region` VALUES (2324, 2323, '重庆', '重庆市', '中国,重庆,重庆市', 2, 'chongqing', '023', '400000', 'Z', '106.504962', '29.533155');
INSERT INTO `tb_region` VALUES (2325, 2324, '万州', '万州区', '中国,重庆,重庆市,万州区', 3, 'wanzhou', '023', '404000', 'W', '108.40869', '30.80788');
INSERT INTO `tb_region` VALUES (2326, 2324, '涪陵', '涪陵区', '中国,重庆,重庆市,涪陵区', 3, 'fuling', '023', '408000', 'F', '107.39007', '29.70292');
INSERT INTO `tb_region` VALUES (2327, 2324, '渝中', '渝中区', '中国,重庆,重庆市,渝中区', 3, 'yuzhong', '023', '400010', 'Y', '106.56901', '29.55279');
INSERT INTO `tb_region` VALUES (2328, 2324, '大渡口', '大渡口区', '中国,重庆,重庆市,大渡口区', 3, 'dadukou', '023', '400080', 'D', '106.48262', '29.48447');
INSERT INTO `tb_region` VALUES (2329, 2324, '江北', '江北区', '中国,重庆,重庆市,江北区', 3, 'jiangbei', '023', '400020', 'J', '106.57434', '29.60658');
INSERT INTO `tb_region` VALUES (2330, 2324, '沙坪坝', '沙坪坝区', '中国,重庆,重庆市,沙坪坝区', 3, 'shapingba', '023', '400030', 'S', '106.45752', '29.54113');
INSERT INTO `tb_region` VALUES (2331, 2324, '九龙坡', '九龙坡区', '中国,重庆,重庆市,九龙坡区', 3, 'jiulongpo', '023', '400050', 'J', '106.51107', '29.50197');
INSERT INTO `tb_region` VALUES (2332, 2324, '南岸', '南岸区', '中国,重庆,重庆市,南岸区', 3, 'nan\'an', '023', '400064', 'N', '106.56347', '29.52311');
INSERT INTO `tb_region` VALUES (2333, 2324, '北碚', '北碚区', '中国,重庆,重庆市,北碚区', 3, 'beibei', '023', '400700', 'B', '106.39614', '29.80574');
INSERT INTO `tb_region` VALUES (2334, 2324, '綦江', '綦江区', '中国,重庆,重庆市,綦江区', 3, 'qijiang', '023', '400800', 'Q', '106.926779', '28.960656');
INSERT INTO `tb_region` VALUES (2335, 2324, '大足', '大足区', '中国,重庆,重庆市,大足区', 3, 'dazu', '023', '400900', 'D', '105.768121', '29.484025');
INSERT INTO `tb_region` VALUES (2336, 2324, '渝北', '渝北区', '中国,重庆,重庆市,渝北区', 3, 'yubei', '023', '401120', 'Y', '106.6307', '29.7182');
INSERT INTO `tb_region` VALUES (2337, 2324, '巴南', '巴南区', '中国,重庆,重庆市,巴南区', 3, 'banan', '023', '401320', 'B', '106.52365', '29.38311');
INSERT INTO `tb_region` VALUES (2338, 2324, '黔江', '黔江区', '中国,重庆,重庆市,黔江区', 3, 'qianjiang', '023', '409700', 'Q', '108.7709', '29.5332');
INSERT INTO `tb_region` VALUES (2339, 2324, '长寿', '长寿区', '中国,重庆,重庆市,长寿区', 3, 'changshou', '023', '401220', 'C', '107.08166', '29.85359');
INSERT INTO `tb_region` VALUES (2340, 2324, '江津', '江津区', '中国,重庆,重庆市,江津区', 3, 'jiangjin', '023', '402260', 'J', '106.25912', '29.29008');
INSERT INTO `tb_region` VALUES (2341, 2324, '合川', '合川区', '中国,重庆,重庆市,合川区', 3, 'hechuan', '023', '401520', 'H', '106.27633', '29.97227');
INSERT INTO `tb_region` VALUES (2342, 2324, '永川', '永川区', '中国,重庆,重庆市,永川区', 3, 'yongchuan', '023', '402160', 'Y', '105.927', '29.35593');
INSERT INTO `tb_region` VALUES (2343, 2324, '南川', '南川区', '中国,重庆,重庆市,南川区', 3, 'nanchuan', '023', '408400', 'N', '107.09936', '29.15751');
INSERT INTO `tb_region` VALUES (2344, 2324, '璧山', '璧山区', '中国,重庆,重庆市,璧山区', 3, 'bishan', '023', '402760', 'B', '106.231126', '29.593581');
INSERT INTO `tb_region` VALUES (2345, 2324, '铜梁', '铜梁区', '中国,重庆,重庆市,铜梁区', 3, 'tongliang', '023', '402560', 'T', '106.054948', '29.839944');
INSERT INTO `tb_region` VALUES (2346, 2324, '潼南', '潼南县', '中国,重庆,重庆市,潼南县', 3, 'tongnan', '023', '402660', 'T', '105.84005', '30.1912');
INSERT INTO `tb_region` VALUES (2347, 2324, '荣昌', '荣昌县', '中国,重庆,重庆市,荣昌县', 3, 'rongchang', '023', '402460', 'R', '105.59442', '29.40488');
INSERT INTO `tb_region` VALUES (2348, 2324, '梁平', '梁平县', '中国,重庆,重庆市,梁平县', 3, 'liangping', '023', '405200', 'L', '107.79998', '30.67545');
INSERT INTO `tb_region` VALUES (2349, 2324, '城口', '城口县', '中国,重庆,重庆市,城口县', 3, 'chengkou', '023', '405900', 'C', '108.66513', '31.94801');
INSERT INTO `tb_region` VALUES (2350, 2324, '丰都', '丰都县', '中国,重庆,重庆市,丰都县', 3, 'fengdu', '023', '408200', 'F', '107.73098', '29.86348');
INSERT INTO `tb_region` VALUES (2351, 2324, '垫江', '垫江县', '中国,重庆,重庆市,垫江县', 3, 'dianjiang', '023', '408300', 'D', '107.35446', '30.33359');
INSERT INTO `tb_region` VALUES (2352, 2324, '武隆', '武隆县', '中国,重庆,重庆市,武隆县', 3, 'wulong', '023', '408500', 'W', '107.7601', '29.32548');
INSERT INTO `tb_region` VALUES (2353, 2324, '忠县', '忠县', '中国,重庆,重庆市,忠县', 3, 'zhongxian', '023', '404300', 'Z', '108.03689', '30.28898');
INSERT INTO `tb_region` VALUES (2354, 2324, '开县', '开县', '中国,重庆,重庆市,开县', 3, 'kaixian', '023', '405400', 'K', '108.39306', '31.16095');
INSERT INTO `tb_region` VALUES (2355, 2324, '云阳', '云阳县', '中国,重庆,重庆市,云阳县', 3, 'yunyang', '023', '404500', 'Y', '108.69726', '30.93062');
INSERT INTO `tb_region` VALUES (2356, 2324, '奉节', '奉节县', '中国,重庆,重庆市,奉节县', 3, 'fengjie', '023', '404600', 'F', '109.46478', '31.01825');
INSERT INTO `tb_region` VALUES (2357, 2324, '巫山', '巫山县', '中国,重庆,重庆市,巫山县', 3, 'wushan', '023', '404700', 'W', '109.87814', '31.07458');
INSERT INTO `tb_region` VALUES (2358, 2324, '巫溪', '巫溪县', '中国,重庆,重庆市,巫溪县', 3, 'wuxi', '023', '405800', 'W', '109.63128', '31.39756');
INSERT INTO `tb_region` VALUES (2359, 2324, '石柱', '石柱土家族自治县', '中国,重庆,重庆市,石柱土家族自治县', 3, 'shizhu', '023', '409100', 'S', '108.11389', '30.00054');
INSERT INTO `tb_region` VALUES (2360, 2324, '秀山', '秀山土家族苗族自治县', '中国,重庆,重庆市,秀山土家族苗族自治县', 3, 'xiushan', '023', '409900', 'X', '108.98861', '28.45062');
INSERT INTO `tb_region` VALUES (2361, 2324, '酉阳', '酉阳土家族苗族自治县', '中国,重庆,重庆市,酉阳土家族苗族自治县', 3, 'youyang', '023', '409800', 'Y', '108.77212', '28.8446');
INSERT INTO `tb_region` VALUES (2362, 2324, '彭水', '彭水苗族土家族自治县', '中国,重庆,重庆市,彭水苗族土家族自治县', 3, 'pengshui', '023', '409600', 'P', '108.16638', '29.29516');
INSERT INTO `tb_region` VALUES (2363, 2323, '两江新区', '两江新区', '中国,重庆,两江新区', 2, 'liangjiangxinqu', '023', '400000', 'L', '106.463344', '29.729153');
INSERT INTO `tb_region` VALUES (2364, 2363, '北部新区', '北部新区', '中国,重庆,两江新区,北部新区', 3, 'beibuxinqu', '023', '400000', 'B', '106.488841', '29.667062');
INSERT INTO `tb_region` VALUES (2365, 2363, '保税港区', '保税港区', '中国,重庆,两江新区,保税港区', 3, 'baoshuigangqu', '023', '400000', 'B', '106.638184', '29.716311');
INSERT INTO `tb_region` VALUES (2366, 2363, '工业园区', '工业园区', '中国,重庆,两江新区,工业园区', 3, 'gongyeyuanqu', '023', '400000', 'G', '106.626434', '29.55554');
INSERT INTO `tb_region` VALUES (2367, 0, '四川', '四川省', '中国,四川省', 1, 'sichuan', '', '', 'S', '104.065735', '30.659462');
INSERT INTO `tb_region` VALUES (2368, 2367, '成都', '成都市', '中国,四川省,成都市', 2, 'chengdu', '028', '610015', 'C', '104.065735', '30.659462');
INSERT INTO `tb_region` VALUES (2369, 2368, '锦江', '锦江区', '中国,四川省,成都市,锦江区', 3, 'jinjiang', '028', '610021', 'J', '104.08347', '30.65614');
INSERT INTO `tb_region` VALUES (2370, 2368, '青羊', '青羊区', '中国,四川省,成都市,青羊区', 3, 'qingyang', '028', '610031', 'Q', '104.06151', '30.67387');
INSERT INTO `tb_region` VALUES (2371, 2368, '金牛', '金牛区', '中国,四川省,成都市,金牛区', 3, 'jinniu', '028', '610036', 'J', '104.05114', '30.69126');
INSERT INTO `tb_region` VALUES (2372, 2368, '武侯', '武侯区', '中国,四川省,成都市,武侯区', 3, 'wuhou', '028', '610041', 'W', '104.04303', '30.64235');
INSERT INTO `tb_region` VALUES (2373, 2368, '成华', '成华区', '中国,四川省,成都市,成华区', 3, 'chenghua', '028', '610066', 'C', '104.10193', '30.65993');
INSERT INTO `tb_region` VALUES (2374, 2368, '龙泉驿', '龙泉驿区', '中国,四川省,成都市,龙泉驿区', 3, 'longquanyi', '028', '610100', 'L', '104.27462', '30.55658');
INSERT INTO `tb_region` VALUES (2375, 2368, '青白江', '青白江区', '中国,四川省,成都市,青白江区', 3, 'qingbaijiang', '028', '610300', 'Q', '104.251', '30.87841');
INSERT INTO `tb_region` VALUES (2376, 2368, '新都', '新都区', '中国,四川省,成都市,新都区', 3, 'xindu', '028', '610500', 'X', '104.15921', '30.82314');
INSERT INTO `tb_region` VALUES (2377, 2368, '温江', '温江区', '中国,四川省,成都市,温江区', 3, 'wenjiang', '028', '611130', 'W', '103.84881', '30.68444');
INSERT INTO `tb_region` VALUES (2378, 2368, '金堂', '金堂县', '中国,四川省,成都市,金堂县', 3, 'jintang', '028', '610400', 'J', '104.41195', '30.86195');
INSERT INTO `tb_region` VALUES (2379, 2368, '双流', '双流县', '中国,四川省,成都市,双流县', 3, 'shuangliu', '028', '610200', 'S', '103.92373', '30.57444');
INSERT INTO `tb_region` VALUES (2380, 2368, '郫县', '郫县', '中国,四川省,成都市,郫县', 3, 'pixian', '028', '611730', 'P', '103.88717', '30.81054');
INSERT INTO `tb_region` VALUES (2381, 2368, '大邑', '大邑县', '中国,四川省,成都市,大邑县', 3, 'dayi', '028', '611330', 'D', '103.52075', '30.58738');
INSERT INTO `tb_region` VALUES (2382, 2368, '蒲江', '蒲江县', '中国,四川省,成都市,蒲江县', 3, 'pujiang', '028', '611630', 'P', '103.50616', '30.19667');
INSERT INTO `tb_region` VALUES (2383, 2368, '新津', '新津县', '中国,四川省,成都市,新津县', 3, 'xinjin', '028', '611430', 'X', '103.8114', '30.40983');
INSERT INTO `tb_region` VALUES (2384, 2368, '都江堰', '都江堰市', '中国,四川省,成都市,都江堰市', 3, 'dujiangyan', '028', '611830', 'D', '103.61941', '30.99825');
INSERT INTO `tb_region` VALUES (2385, 2368, '彭州', '彭州市', '中国,四川省,成都市,彭州市', 3, 'pengzhou', '028', '611930', 'P', '103.958', '30.99011');
INSERT INTO `tb_region` VALUES (2386, 2368, '邛崃', '邛崃市', '中国,四川省,成都市,邛崃市', 3, 'qionglai', '028', '611530', 'Q', '103.46283', '30.41489');
INSERT INTO `tb_region` VALUES (2387, 2368, '崇州', '崇州市', '中国,四川省,成都市,崇州市', 3, 'chongzhou', '028', '611230', 'C', '103.67285', '30.63014');
INSERT INTO `tb_region` VALUES (2388, 2367, '自贡', '自贡市', '中国,四川省,自贡市', 2, 'zigong', '0813', '643000', 'Z', '104.773447', '29.352765');
INSERT INTO `tb_region` VALUES (2389, 2388, '自流井', '自流井区', '中国,四川省,自贡市,自流井区', 3, 'ziliujing', '0813', '643000', 'Z', '104.77719', '29.33745');
INSERT INTO `tb_region` VALUES (2390, 2388, '贡井', '贡井区', '中国,四川省,自贡市,贡井区', 3, 'gongjing', '0813', '643020', 'G', '104.71536', '29.34576');
INSERT INTO `tb_region` VALUES (2391, 2388, '大安', '大安区', '中国,四川省,自贡市,大安区', 3, 'da\'an', '0813', '643010', 'D', '104.77383', '29.36364');
INSERT INTO `tb_region` VALUES (2392, 2388, '沿滩', '沿滩区', '中国,四川省,自贡市,沿滩区', 3, 'yantan', '0813', '643030', 'Y', '104.88012', '29.26611');
INSERT INTO `tb_region` VALUES (2393, 2388, '荣县', '荣县', '中国,四川省,自贡市,荣县', 3, 'rongxian', '0813', '643100', 'R', '104.4176', '29.44445');
INSERT INTO `tb_region` VALUES (2394, 2388, '富顺', '富顺县', '中国,四川省,自贡市,富顺县', 3, 'fushun', '0813', '643200', 'F', '104.97491', '29.18123');
INSERT INTO `tb_region` VALUES (2395, 2367, '攀枝花', '攀枝花市', '中国,四川省,攀枝花市', 2, 'panzhihua', '0812', '617000', 'P', '101.716007', '26.580446');
INSERT INTO `tb_region` VALUES (2396, 2395, '东区', '东区', '中国,四川省,攀枝花市,东区', 3, 'dongqu', '0812', '617067', 'D', '101.7052', '26.54677');
INSERT INTO `tb_region` VALUES (2397, 2395, '西区', '西区', '中国,四川省,攀枝花市,西区', 3, 'xiqu', '0812', '617068', 'X', '101.63058', '26.59753');
INSERT INTO `tb_region` VALUES (2398, 2395, '仁和', '仁和区', '中国,四川省,攀枝花市,仁和区', 3, 'renhe', '0812', '617061', 'R', '101.73812', '26.49841');
INSERT INTO `tb_region` VALUES (2399, 2395, '米易', '米易县', '中国,四川省,攀枝花市,米易县', 3, 'miyi', '0812', '617200', 'M', '102.11132', '26.88718');
INSERT INTO `tb_region` VALUES (2400, 2395, '盐边', '盐边县', '中国,四川省,攀枝花市,盐边县', 3, 'yanbian', '0812', '617100', 'Y', '101.85446', '26.68847');
INSERT INTO `tb_region` VALUES (2401, 2367, '泸州', '泸州市', '中国,四川省,泸州市', 2, 'luzhou', '0830', '646000', 'L', '105.443348', '28.889138');
INSERT INTO `tb_region` VALUES (2402, 2401, '江阳', '江阳区', '中国,四川省,泸州市,江阳区', 3, 'jiangyang', '0830', '646000', 'J', '105.45336', '28.88934');
INSERT INTO `tb_region` VALUES (2403, 2401, '纳溪', '纳溪区', '中国,四川省,泸州市,纳溪区', 3, 'naxi', '0830', '646300', 'N', '105.37255', '28.77343');
INSERT INTO `tb_region` VALUES (2404, 2401, '龙马潭', '龙马潭区', '中国,四川省,泸州市,龙马潭区', 3, 'longmatan', '0830', '646000', 'L', '105.43774', '28.91308');
INSERT INTO `tb_region` VALUES (2405, 2401, '泸县', '泸县', '中国,四川省,泸州市,泸县', 3, 'luxian', '0830', '646106', 'L', '105.38192', '29.15041');
INSERT INTO `tb_region` VALUES (2406, 2401, '合江', '合江县', '中国,四川省,泸州市,合江县', 3, 'hejiang', '0830', '646200', 'H', '105.8352', '28.81005');
INSERT INTO `tb_region` VALUES (2407, 2401, '叙永', '叙永县', '中国,四川省,泸州市,叙永县', 3, 'xuyong', '0830', '646400', 'X', '105.44473', '28.15586');
INSERT INTO `tb_region` VALUES (2408, 2401, '古蔺', '古蔺县', '中国,四川省,泸州市,古蔺县', 3, 'gulin', '0830', '646500', 'G', '105.81347', '28.03867');
INSERT INTO `tb_region` VALUES (2409, 2367, '德阳', '德阳市', '中国,四川省,德阳市', 2, 'deyang', '0838', '618000', 'D', '104.398651', '31.127991');
INSERT INTO `tb_region` VALUES (2410, 2409, '旌阳', '旌阳区', '中国,四川省,德阳市,旌阳区', 3, 'jingyang', '0838', '618000', 'J', '104.39367', '31.13906');
INSERT INTO `tb_region` VALUES (2411, 2409, '中江', '中江县', '中国,四川省,德阳市,中江县', 3, 'zhongjiang', '0838', '618100', 'Z', '104.67861', '31.03297');
INSERT INTO `tb_region` VALUES (2412, 2409, '罗江', '罗江县', '中国,四川省,德阳市,罗江县', 3, 'luojiang', '0838', '618500', 'L', '104.51025', '31.31665');
INSERT INTO `tb_region` VALUES (2413, 2409, '广汉', '广汉市', '中国,四川省,德阳市,广汉市', 3, 'guanghan', '0838', '618300', 'G', '104.28234', '30.97686');
INSERT INTO `tb_region` VALUES (2414, 2409, '什邡', '什邡市', '中国,四川省,德阳市,什邡市', 3, 'shifang', '0838', '618400', 'S', '104.16754', '31.1264');
INSERT INTO `tb_region` VALUES (2415, 2409, '绵竹', '绵竹市', '中国,四川省,德阳市,绵竹市', 3, 'mianzhu', '0838', '618200', 'M', '104.22076', '31.33772');
INSERT INTO `tb_region` VALUES (2416, 2367, '绵阳', '绵阳市', '中国,四川省,绵阳市', 2, 'mianyang', '0816', '621000', 'M', '104.741722', '31.46402');
INSERT INTO `tb_region` VALUES (2417, 2416, '涪城', '涪城区', '中国,四川省,绵阳市,涪城区', 3, 'fucheng', '0816', '621000', 'F', '104.75719', '31.45522');
INSERT INTO `tb_region` VALUES (2418, 2416, '游仙', '游仙区', '中国,四川省,绵阳市,游仙区', 3, 'youxian', '0816', '621022', 'Y', '104.77092', '31.46574');
INSERT INTO `tb_region` VALUES (2419, 2416, '三台', '三台县', '中国,四川省,绵阳市,三台县', 3, 'santai', '0816', '621100', 'S', '105.09079', '31.09179');
INSERT INTO `tb_region` VALUES (2420, 2416, '盐亭', '盐亭县', '中国,四川省,绵阳市,盐亭县', 3, 'yanting', '0816', '621600', 'Y', '105.3898', '31.22176');
INSERT INTO `tb_region` VALUES (2421, 2416, '安县', '安县', '中国,四川省,绵阳市,安县', 3, 'anxian', '0816', '622650', 'A', '104.56738', '31.53487');
INSERT INTO `tb_region` VALUES (2422, 2416, '梓潼', '梓潼县', '中国,四川省,绵阳市,梓潼县', 3, 'zitong', '0816', '622150', 'Z', '105.16183', '31.6359');
INSERT INTO `tb_region` VALUES (2423, 2416, '北川', '北川羌族自治县', '中国,四川省,绵阳市,北川羌族自治县', 3, 'beichuan', '0816', '622750', 'B', '104.46408', '31.83286');
INSERT INTO `tb_region` VALUES (2424, 2416, '平武', '平武县', '中国,四川省,绵阳市,平武县', 3, 'pingwu', '0816', '622550', 'P', '104.52862', '32.40791');
INSERT INTO `tb_region` VALUES (2425, 2416, '江油', '江油市', '中国,四川省,绵阳市,江油市', 3, 'jiangyou', '0816', '621700', 'J', '104.74539', '31.77775');
INSERT INTO `tb_region` VALUES (2426, 2367, '广元', '广元市', '中国,四川省,广元市', 2, 'guangyuan', '0839', '628000', 'G', '105.829757', '32.433668');
INSERT INTO `tb_region` VALUES (2427, 2426, '利州', '利州区', '中国,四川省,广元市,利州区', 3, 'lizhou', '0839', '628017', 'L', '105.826194', '32.432276');
INSERT INTO `tb_region` VALUES (2428, 2426, '昭化', '昭化区', '中国,四川省,广元市,昭化区', 3, 'zhaohua', '0839', '628017', 'Z', '105.640491', '32.386518');
INSERT INTO `tb_region` VALUES (2429, 2426, '朝天', '朝天区', '中国,四川省,广元市,朝天区', 3, 'chaotian', '0839', '628017', 'C', '105.89273', '32.64398');
INSERT INTO `tb_region` VALUES (2430, 2426, '旺苍', '旺苍县', '中国,四川省,广元市,旺苍县', 3, 'wangcang', '0839', '628200', 'W', '106.29022', '32.22845');
INSERT INTO `tb_region` VALUES (2431, 2426, '青川', '青川县', '中国,四川省,广元市,青川县', 3, 'qingchuan', '0839', '628100', 'Q', '105.2391', '32.58563');
INSERT INTO `tb_region` VALUES (2432, 2426, '剑阁', '剑阁县', '中国,四川省,广元市,剑阁县', 3, 'jiange', '0839', '628300', 'J', '105.5252', '32.28845');
INSERT INTO `tb_region` VALUES (2433, 2426, '苍溪', '苍溪县', '中国,四川省,广元市,苍溪县', 3, 'cangxi', '0839', '628400', 'C', '105.936', '31.73209');
INSERT INTO `tb_region` VALUES (2434, 2367, '遂宁', '遂宁市', '中国,四川省,遂宁市', 2, 'suining', '0825', '629000', 'S', '105.571331', '30.513311');
INSERT INTO `tb_region` VALUES (2435, 2434, '船山', '船山区', '中国,四川省,遂宁市,船山区', 3, 'chuanshan', '0825', '629000', 'C', '105.5809', '30.49991');
INSERT INTO `tb_region` VALUES (2436, 2434, '安居', '安居区', '中国,四川省,遂宁市,安居区', 3, 'anju', '0825', '629000', 'A', '105.46402', '30.35778');
INSERT INTO `tb_region` VALUES (2437, 2434, '蓬溪', '蓬溪县', '中国,四川省,遂宁市,蓬溪县', 3, 'pengxi', '0825', '629100', 'P', '105.70752', '30.75775');
INSERT INTO `tb_region` VALUES (2438, 2434, '射洪', '射洪县', '中国,四川省,遂宁市,射洪县', 3, 'shehong', '0825', '629200', 'S', '105.38922', '30.87203');
INSERT INTO `tb_region` VALUES (2439, 2434, '大英', '大英县', '中国,四川省,遂宁市,大英县', 3, 'daying', '0825', '629300', 'D', '105.24346', '30.59434');
INSERT INTO `tb_region` VALUES (2440, 2367, '内江', '内江市', '中国,四川省,内江市', 2, 'neijiang', '0832', '641000', 'N', '105.066138', '29.58708');
INSERT INTO `tb_region` VALUES (2441, 2440, '市中区', '市中区', '中国,四川省,内江市,市中区', 3, 'shizhongqu', '0832', '641000', 'S', '105.0679', '29.58709');
INSERT INTO `tb_region` VALUES (2442, 2440, '东兴', '东兴区', '中国,四川省,内江市,东兴区', 3, 'dongxing', '0832', '641100', 'D', '105.07554', '29.59278');
INSERT INTO `tb_region` VALUES (2443, 2440, '威远', '威远县', '中国,四川省,内江市,威远县', 3, 'weiyuan', '0832', '642450', 'W', '104.66955', '29.52823');
INSERT INTO `tb_region` VALUES (2444, 2440, '资中', '资中县', '中国,四川省,内江市,资中县', 3, 'zizhong', '0832', '641200', 'Z', '104.85205', '29.76409');
INSERT INTO `tb_region` VALUES (2445, 2440, '隆昌', '隆昌县', '中国,四川省,内江市,隆昌县', 3, 'longchang', '0832', '642150', 'L', '105.28738', '29.33937');
INSERT INTO `tb_region` VALUES (2446, 2367, '乐山', '乐山市', '中国,四川省,乐山市', 2, 'leshan', '0833', '614000', 'L', '103.761263', '29.582024');
INSERT INTO `tb_region` VALUES (2447, 2446, '市中区', '市中区', '中国,四川省,乐山市,市中区', 3, 'shizhongqu', '0833', '614000', 'S', '103.76159', '29.55543');
INSERT INTO `tb_region` VALUES (2448, 2446, '沙湾', '沙湾区', '中国,四川省,乐山市,沙湾区', 3, 'shawan', '0833', '614900', 'S', '103.54873', '29.41194');
INSERT INTO `tb_region` VALUES (2449, 2446, '五通桥', '五通桥区', '中国,四川省,乐山市,五通桥区', 3, 'wutongqiao', '0833', '614800', 'W', '103.82345', '29.40344');
INSERT INTO `tb_region` VALUES (2450, 2446, '金口河', '金口河区', '中国,四川省,乐山市,金口河区', 3, 'jinkouhe', '0833', '614700', 'J', '103.07858', '29.24578');
INSERT INTO `tb_region` VALUES (2451, 2446, '犍为', '犍为县', '中国,四川省,乐山市,犍为县', 3, 'qianwei', '0833', '614400', 'Q', '103.94989', '29.20973');
INSERT INTO `tb_region` VALUES (2452, 2446, '井研', '井研县', '中国,四川省,乐山市,井研县', 3, 'jingyan', '0833', '613100', 'J', '104.07019', '29.65228');
INSERT INTO `tb_region` VALUES (2453, 2446, '夹江', '夹江县', '中国,四川省,乐山市,夹江县', 3, 'jiajiang', '0833', '614100', 'J', '103.57199', '29.73868');
INSERT INTO `tb_region` VALUES (2454, 2446, '沐川', '沐川县', '中国,四川省,乐山市,沐川县', 3, 'muchuan', '0833', '614500', 'M', '103.90353', '28.95646');
INSERT INTO `tb_region` VALUES (2455, 2446, '峨边', '峨边彝族自治县', '中国,四川省,乐山市,峨边彝族自治县', 3, 'ebian', '0833', '614300', 'E', '103.26339', '29.23004');
INSERT INTO `tb_region` VALUES (2456, 2446, '马边', '马边彝族自治县', '中国,四川省,乐山市,马边彝族自治县', 3, 'mabian', '0833', '614600', 'M', '103.54617', '28.83593');
INSERT INTO `tb_region` VALUES (2457, 2446, '峨眉山', '峨眉山市', '中国,四川省,乐山市,峨眉山市', 3, 'emeishan', '0833', '614200', 'E', '103.4844', '29.60117');
INSERT INTO `tb_region` VALUES (2458, 2367, '南充', '南充市', '中国,四川省,南充市', 2, 'nanchong', '0817', '637000', 'N', '106.082974', '30.795281');
INSERT INTO `tb_region` VALUES (2459, 2458, '顺庆', '顺庆区', '中国,四川省,南充市,顺庆区', 3, 'shunqing', '0817', '637000', 'S', '106.09216', '30.79642');
INSERT INTO `tb_region` VALUES (2460, 2458, '高坪', '高坪区', '中国,四川省,南充市,高坪区', 3, 'gaoping', '0817', '637100', 'G', '106.11894', '30.78162');
INSERT INTO `tb_region` VALUES (2461, 2458, '嘉陵', '嘉陵区', '中国,四川省,南充市,嘉陵区', 3, 'jialing', '0817', '637100', 'J', '106.07141', '30.75848');
INSERT INTO `tb_region` VALUES (2462, 2458, '南部', '南部县', '中国,四川省,南充市,南部县', 3, 'nanbu', '0817', '637300', 'N', '106.06738', '31.35451');
INSERT INTO `tb_region` VALUES (2463, 2458, '营山', '营山县', '中国,四川省,南充市,营山县', 3, 'yingshan', '0817', '637700', 'Y', '106.56637', '31.07747');
INSERT INTO `tb_region` VALUES (2464, 2458, '蓬安', '蓬安县', '中国,四川省,南充市,蓬安县', 3, 'peng\'an', '0817', '637800', 'P', '106.41262', '31.02964');
INSERT INTO `tb_region` VALUES (2465, 2458, '仪陇', '仪陇县', '中国,四川省,南充市,仪陇县', 3, 'yilong', '0817', '637600', 'Y', '106.29974', '31.27628');
INSERT INTO `tb_region` VALUES (2466, 2458, '西充', '西充县', '中国,四川省,南充市,西充县', 3, 'xichong', '0817', '637200', 'X', '105.89996', '30.9969');
INSERT INTO `tb_region` VALUES (2467, 2458, '阆中', '阆中市', '中国,四川省,南充市,阆中市', 3, 'langzhong', '0817', '637400', 'L', '106.00494', '31.55832');
INSERT INTO `tb_region` VALUES (2468, 2367, '眉山', '眉山市', '中国,四川省,眉山市', 2, 'meishan', '028', '620020', 'M', '103.831788', '30.048318');
INSERT INTO `tb_region` VALUES (2469, 2468, '东坡', '东坡区', '中国,四川省,眉山市,东坡区', 3, 'dongpo', '028', '620010', 'D', '103.832', '30.04219');
INSERT INTO `tb_region` VALUES (2470, 2468, '彭山', '彭山区', '中国,四川省,眉山市,彭山区', 3, 'pengshan', '028', '620860', 'P', '103.87268', '30.19283');
INSERT INTO `tb_region` VALUES (2471, 2468, '仁寿', '仁寿县', '中国,四川省,眉山市,仁寿县', 3, 'renshou', '028', '620500', 'R', '104.13412', '29.99599');
INSERT INTO `tb_region` VALUES (2472, 2468, '洪雅', '洪雅县', '中国,四川省,眉山市,洪雅县', 3, 'hongya', '028', '620360', 'H', '103.37313', '29.90661');
INSERT INTO `tb_region` VALUES (2473, 2468, '丹棱', '丹棱县', '中国,四川省,眉山市,丹棱县', 3, 'danling', '028', '620200', 'D', '103.51339', '30.01562');
INSERT INTO `tb_region` VALUES (2474, 2468, '青神', '青神县', '中国,四川省,眉山市,青神县', 3, 'qingshen', '028', '620460', 'Q', '103.84771', '29.83235');
INSERT INTO `tb_region` VALUES (2475, 2367, '宜宾', '宜宾市', '中国,四川省,宜宾市', 2, 'yibin', '0831', '644000', 'Y', '104.630825', '28.760189');
INSERT INTO `tb_region` VALUES (2476, 2475, '翠屏', '翠屏区', '中国,四川省,宜宾市,翠屏区', 3, 'cuiping', '0831', '644000', 'C', '104.61978', '28.76566');
INSERT INTO `tb_region` VALUES (2477, 2475, '南溪', '南溪区', '中国,四川省,宜宾市,南溪区', 3, 'nanxi', '0831', '644100', 'N', '104.981133', '28.839806');
INSERT INTO `tb_region` VALUES (2478, 2475, '宜宾', '宜宾县', '中国,四川省,宜宾市,宜宾县', 3, 'yibin', '0831', '644600', 'Y', '104.53314', '28.68996');
INSERT INTO `tb_region` VALUES (2479, 2475, '江安', '江安县', '中国,四川省,宜宾市,江安县', 3, 'jiang\'an', '0831', '644200', 'J', '105.06683', '28.72385');
INSERT INTO `tb_region` VALUES (2480, 2475, '长宁', '长宁县', '中国,四川省,宜宾市,长宁县', 3, 'changning', '0831', '644300', 'C', '104.9252', '28.57777');
INSERT INTO `tb_region` VALUES (2481, 2475, '高县', '高县', '中国,四川省,宜宾市,高县', 3, 'gaoxian', '0831', '645150', 'G', '104.51754', '28.43619');
INSERT INTO `tb_region` VALUES (2482, 2475, '珙县', '珙县', '中国,四川省,宜宾市,珙县', 3, 'gongxian', '0831', '644500', 'G', '104.71398', '28.44512');
INSERT INTO `tb_region` VALUES (2483, 2475, '筠连', '筠连县', '中国,四川省,宜宾市,筠连县', 3, 'junlian', '0831', '645250', 'J', '104.51217', '28.16495');
INSERT INTO `tb_region` VALUES (2484, 2475, '兴文', '兴文县', '中国,四川省,宜宾市,兴文县', 3, 'xingwen', '0831', '644400', 'X', '105.23675', '28.3044');
INSERT INTO `tb_region` VALUES (2485, 2475, '屏山', '屏山县', '中国,四川省,宜宾市,屏山县', 3, 'pingshan', '0831', '645350', 'P', '104.16293', '28.64369');
INSERT INTO `tb_region` VALUES (2486, 2367, '广安', '广安市', '中国,四川省,广安市', 2, 'guang\'an', '0826', '638000', 'G', '106.633369', '30.456398');
INSERT INTO `tb_region` VALUES (2487, 2486, '广安', '广安区', '中国,四川省,广安市,广安区', 3, 'guang\'an', '0826', '638000', 'G', '106.64163', '30.47389');
INSERT INTO `tb_region` VALUES (2488, 2486, '前锋', '前锋区', '中国,四川省,广安市,前锋区', 3, 'qianfeng', '0826', '638019', 'Q', '106.893537', '30.494572');
INSERT INTO `tb_region` VALUES (2489, 2486, '岳池', '岳池县', '中国,四川省,广安市,岳池县', 3, 'yuechi', '0826', '638300', 'Y', '106.44079', '30.53918');
INSERT INTO `tb_region` VALUES (2490, 2486, '武胜', '武胜县', '中国,四川省,广安市,武胜县', 3, 'wusheng', '0826', '638400', 'W', '106.29592', '30.34932');
INSERT INTO `tb_region` VALUES (2491, 2486, '邻水', '邻水县', '中国,四川省,广安市,邻水县', 3, 'linshui', '0826', '638500', 'L', '106.92968', '30.33449');
INSERT INTO `tb_region` VALUES (2492, 2486, '华蓥', '华蓥市', '中国,四川省,广安市,华蓥市', 3, 'huaying', '0826', '638600', 'H', '106.78466', '30.39007');
INSERT INTO `tb_region` VALUES (2493, 2367, '达州', '达州市', '中国,四川省,达州市', 2, 'dazhou', '0818', '635000', 'D', '107.502262', '31.209484');
INSERT INTO `tb_region` VALUES (2494, 2493, '通川', '通川区', '中国,四川省,达州市,通川区', 3, 'tongchuan', '0818', '635000', 'T', '107.50456', '31.21469');
INSERT INTO `tb_region` VALUES (2495, 2493, '达川', '达川区', '中国,四川省,达州市,达川区', 3, 'dachuan', '0818', '635000', 'D', '107.502262', '31.209484');
INSERT INTO `tb_region` VALUES (2496, 2493, '宣汉', '宣汉县', '中国,四川省,达州市,宣汉县', 3, 'xuanhan', '0818', '636150', 'X', '107.72775', '31.35516');
INSERT INTO `tb_region` VALUES (2497, 2493, '开江', '开江县', '中国,四川省,达州市,开江县', 3, 'kaijiang', '0818', '636250', 'K', '107.86889', '31.0841');
INSERT INTO `tb_region` VALUES (2498, 2493, '大竹', '大竹县', '中国,四川省,达州市,大竹县', 3, 'dazhu', '0818', '635100', 'D', '107.20855', '30.74147');
INSERT INTO `tb_region` VALUES (2499, 2493, '渠县', '渠县', '中国,四川省,达州市,渠县', 3, 'quxian', '0818', '635200', 'Q', '106.97381', '30.8376');
INSERT INTO `tb_region` VALUES (2500, 2493, '万源', '万源市', '中国,四川省,达州市,万源市', 3, 'wanyuan', '0818', '636350', 'W', '108.03598', '32.08091');
INSERT INTO `tb_region` VALUES (2501, 2367, '雅安', '雅安市', '中国,四川省,雅安市', 2, 'ya\'an', '0835', '625000', 'Y', '103.001033', '29.987722');
INSERT INTO `tb_region` VALUES (2502, 2501, '雨城', '雨城区', '中国,四川省,雅安市,雨城区', 3, 'yucheng', '0835', '625000', 'Y', '103.03305', '30.00531');
INSERT INTO `tb_region` VALUES (2503, 2501, '名山', '名山区', '中国,四川省,雅安市,名山区', 3, 'mingshan', '0835', '625100', 'M', '103.112214', '30.084718');
INSERT INTO `tb_region` VALUES (2504, 2501, '荥经', '荥经县', '中国,四川省,雅安市,荥经县', 3, 'yingjing', '0835', '625200', 'Y', '102.84652', '29.79402');
INSERT INTO `tb_region` VALUES (2505, 2501, '汉源', '汉源县', '中国,四川省,雅安市,汉源县', 3, 'hanyuan', '0835', '625300', 'H', '102.6784', '29.35168');
INSERT INTO `tb_region` VALUES (2506, 2501, '石棉', '石棉县', '中国,四川省,雅安市,石棉县', 3, 'shimian', '0835', '625400', 'S', '102.35943', '29.22796');
INSERT INTO `tb_region` VALUES (2507, 2501, '天全', '天全县', '中国,四川省,雅安市,天全县', 3, 'tianquan', '0835', '625500', 'T', '102.75906', '30.06754');
INSERT INTO `tb_region` VALUES (2508, 2501, '芦山', '芦山县', '中国,四川省,雅安市,芦山县', 3, 'lushan', '0835', '625600', 'L', '102.92791', '30.14369');
INSERT INTO `tb_region` VALUES (2509, 2501, '宝兴', '宝兴县', '中国,四川省,雅安市,宝兴县', 3, 'baoxing', '0835', '625700', 'B', '102.81555', '30.36836');
INSERT INTO `tb_region` VALUES (2510, 2367, '巴中', '巴中市', '中国,四川省,巴中市', 2, 'bazhong', '0827', '636000', 'B', '106.753669', '31.858809');
INSERT INTO `tb_region` VALUES (2511, 2510, '巴州', '巴州区', '中国,四川省,巴中市,巴州区', 3, 'bazhou', '0827', '636001', 'B', '106.76889', '31.85125');
INSERT INTO `tb_region` VALUES (2512, 2510, '恩阳', '恩阳区', '中国,四川省,巴中市,恩阳区', 3, 'enyang', '0827', '636064', 'E', '106.753669', '31.858809');
INSERT INTO `tb_region` VALUES (2513, 2510, '通江', '通江县', '中国,四川省,巴中市,通江县', 3, 'tongjiang', '0827', '636700', 'T', '107.24398', '31.91294');
INSERT INTO `tb_region` VALUES (2514, 2510, '南江', '南江县', '中国,四川省,巴中市,南江县', 3, 'nanjiang', '0827', '636600', 'N', '106.84164', '32.35335');
INSERT INTO `tb_region` VALUES (2515, 2510, '平昌', '平昌县', '中国,四川省,巴中市,平昌县', 3, 'pingchang', '0827', '636400', 'P', '107.10424', '31.5594');
INSERT INTO `tb_region` VALUES (2516, 2367, '资阳', '资阳市', '中国,四川省,资阳市', 2, 'ziyang', '028', '641300', 'Z', '104.641917', '30.122211');
INSERT INTO `tb_region` VALUES (2517, 2516, '雁江', '雁江区', '中国,四川省,资阳市,雁江区', 3, 'yanjiang', '028', '641300', 'Y', '104.65216', '30.11525');
INSERT INTO `tb_region` VALUES (2518, 2516, '安岳', '安岳县', '中国,四川省,资阳市,安岳县', 3, 'anyue', '028', '642350', 'A', '105.3363', '30.09786');
INSERT INTO `tb_region` VALUES (2519, 2516, '乐至', '乐至县', '中国,四川省,资阳市,乐至县', 3, 'lezhi', '028', '641500', 'L', '105.03207', '30.27227');
INSERT INTO `tb_region` VALUES (2520, 2516, '简阳', '简阳市', '中国,四川省,资阳市,简阳市', 3, 'jianyang', '028', '641400', 'J', '104.54864', '30.3904');
INSERT INTO `tb_region` VALUES (2521, 2367, '阿坝', '阿坝藏族羌族自治州', '中国,四川省,阿坝藏族羌族自治州', 2, 'aba', '0837', '624000', 'A', '102.221374', '31.899792');
INSERT INTO `tb_region` VALUES (2522, 2521, '汶川', '汶川县', '中国,四川省,阿坝藏族羌族自治州,汶川县', 3, 'wenchuan', '0837', '623000', 'W', '103.59079', '31.47326');
INSERT INTO `tb_region` VALUES (2523, 2521, '理县', '理县', '中国,四川省,阿坝藏族羌族自治州,理县', 3, 'lixian', '0837', '623100', 'L', '103.17175', '31.43603');
INSERT INTO `tb_region` VALUES (2524, 2521, '茂县', '茂县', '中国,四川省,阿坝藏族羌族自治州,茂县', 3, 'maoxian', '0837', '623200', 'M', '103.85372', '31.682');
INSERT INTO `tb_region` VALUES (2525, 2521, '松潘', '松潘县', '中国,四川省,阿坝藏族羌族自治州,松潘县', 3, 'songpan', '0837', '623300', 'S', '103.59924', '32.63871');
INSERT INTO `tb_region` VALUES (2526, 2521, '九寨沟', '九寨沟县', '中国,四川省,阿坝藏族羌族自治州,九寨沟县', 3, 'jiuzhaigou', '0837', '623400', 'J', '104.23672', '33.26318');
INSERT INTO `tb_region` VALUES (2527, 2521, '金川', '金川县', '中国,四川省,阿坝藏族羌族自治州,金川县', 3, 'jinchuan', '0837', '624100', 'J', '102.06555', '31.47623');
INSERT INTO `tb_region` VALUES (2528, 2521, '小金', '小金县', '中国,四川省,阿坝藏族羌族自治州,小金县', 3, 'xiaojin', '0837', '624200', 'X', '102.36499', '30.99934');
INSERT INTO `tb_region` VALUES (2529, 2521, '黑水', '黑水县', '中国,四川省,阿坝藏族羌族自治州,黑水县', 3, 'heishui', '0837', '623500', 'H', '102.99176', '32.06184');
INSERT INTO `tb_region` VALUES (2530, 2521, '马尔康', '马尔康县', '中国,四川省,阿坝藏族羌族自治州,马尔康县', 3, 'maerkang', '0837', '624000', 'M', '102.20625', '31.90584');
INSERT INTO `tb_region` VALUES (2531, 2521, '壤塘', '壤塘县', '中国,四川省,阿坝藏族羌族自治州,壤塘县', 3, 'rangtang', '0837', '624300', 'R', '100.9783', '32.26578');
INSERT INTO `tb_region` VALUES (2532, 2521, '阿坝', '阿坝县', '中国,四川省,阿坝藏族羌族自治州,阿坝县', 3, 'aba', '0837', '624600', 'A', '101.70632', '32.90301');
INSERT INTO `tb_region` VALUES (2533, 2521, '若尔盖', '若尔盖县', '中国,四川省,阿坝藏族羌族自治州,若尔盖县', 3, 'ruoergai', '0837', '624500', 'R', '102.9598', '33.57432');
INSERT INTO `tb_region` VALUES (2534, 2521, '红原', '红原县', '中国,四川省,阿坝藏族羌族自治州,红原县', 3, 'hongyuan', '0837', '624400', 'H', '102.54525', '32.78989');
INSERT INTO `tb_region` VALUES (2535, 2367, '甘孜', '甘孜藏族自治州', '中国,四川省,甘孜藏族自治州', 2, 'garze', '0836', '626000', 'G', '101.963815', '30.050663');
INSERT INTO `tb_region` VALUES (2536, 2535, '康定', '康定县', '中国,四川省,甘孜藏族自治州,康定县', 3, 'kangding', '0836', '626000', 'K', '101.96487', '30.05532');
INSERT INTO `tb_region` VALUES (2537, 2535, '泸定', '泸定县', '中国,四川省,甘孜藏族自治州,泸定县', 3, 'luding', '0836', '626100', 'L', '102.23507', '29.91475');
INSERT INTO `tb_region` VALUES (2538, 2535, '丹巴', '丹巴县', '中国,四川省,甘孜藏族自治州,丹巴县', 3, 'danba', '0836', '626300', 'D', '101.88424', '30.87656');
INSERT INTO `tb_region` VALUES (2539, 2535, '九龙', '九龙县', '中国,四川省,甘孜藏族自治州,九龙县', 3, 'jiulong', '0836', '626200', 'J', '101.50848', '29.00091');
INSERT INTO `tb_region` VALUES (2540, 2535, '雅江', '雅江县', '中国,四川省,甘孜藏族自治州,雅江县', 3, 'yajiang', '0836', '627450', 'Y', '101.01492', '30.03281');
INSERT INTO `tb_region` VALUES (2541, 2535, '道孚', '道孚县', '中国,四川省,甘孜藏族自治州,道孚县', 3, 'daofu', '0836', '626400', 'D', '101.12554', '30.98046');
INSERT INTO `tb_region` VALUES (2542, 2535, '炉霍', '炉霍县', '中国,四川省,甘孜藏族自治州,炉霍县', 3, 'luhuo', '0836', '626500', 'L', '100.67681', '31.3917');
INSERT INTO `tb_region` VALUES (2543, 2535, '甘孜', '甘孜县', '中国,四川省,甘孜藏族自治州,甘孜县', 3, 'ganzi', '0836', '626700', 'G', '99.99307', '31.62672');
INSERT INTO `tb_region` VALUES (2544, 2535, '新龙', '新龙县', '中国,四川省,甘孜藏族自治州,新龙县', 3, 'xinlong', '0836', '626800', 'X', '100.3125', '30.94067');
INSERT INTO `tb_region` VALUES (2545, 2535, '德格', '德格县', '中国,四川省,甘孜藏族自治州,德格县', 3, 'dege', '0836', '627250', 'D', '98.58078', '31.80615');
INSERT INTO `tb_region` VALUES (2546, 2535, '白玉', '白玉县', '中国,四川省,甘孜藏族自治州,白玉县', 3, 'baiyu', '0836', '627150', 'B', '98.82568', '31.20902');
INSERT INTO `tb_region` VALUES (2547, 2535, '石渠', '石渠县', '中国,四川省,甘孜藏族自治州,石渠县', 3, 'shiqu', '0836', '627350', 'S', '98.10156', '32.97884');
INSERT INTO `tb_region` VALUES (2548, 2535, '色达', '色达县', '中国,四川省,甘孜藏族自治州,色达县', 3, 'seda', '0836', '626600', 'S', '100.33224', '32.26839');
INSERT INTO `tb_region` VALUES (2549, 2535, '理塘', '理塘县', '中国,四川省,甘孜藏族自治州,理塘县', 3, 'litang', '0836', '627550', 'L', '100.27005', '29.99674');
INSERT INTO `tb_region` VALUES (2550, 2535, '巴塘', '巴塘县', '中国,四川省,甘孜藏族自治州,巴塘县', 3, 'batang', '0836', '627650', 'B', '99.10409', '30.00423');
INSERT INTO `tb_region` VALUES (2551, 2535, '乡城', '乡城县', '中国,四川省,甘孜藏族自治州,乡城县', 3, 'xiangcheng', '0836', '627850', 'X', '99.79943', '28.93554');
INSERT INTO `tb_region` VALUES (2552, 2535, '稻城', '稻城县', '中国,四川省,甘孜藏族自治州,稻城县', 3, 'daocheng', '0836', '627750', 'D', '100.29809', '29.0379');
INSERT INTO `tb_region` VALUES (2553, 2535, '得荣', '得荣县', '中国,四川省,甘孜藏族自治州,得荣县', 3, 'derong', '0836', '627950', 'D', '99.28628', '28.71297');
INSERT INTO `tb_region` VALUES (2554, 2367, '凉山', '凉山彝族自治州', '中国,四川省,凉山彝族自治州', 2, 'liangshan', '0834', '615000', 'L', '102.258746', '27.886762');
INSERT INTO `tb_region` VALUES (2555, 2554, '西昌', '西昌市', '中国,四川省,凉山彝族自治州,西昌市', 3, 'xichang', '0835', '615000', 'X', '102.26413', '27.89524');
INSERT INTO `tb_region` VALUES (2556, 2554, '木里', '木里藏族自治县', '中国,四川省,凉山彝族自治州,木里藏族自治县', 3, 'muli', '0851', '615800', 'M', '101.2796', '27.92875');
INSERT INTO `tb_region` VALUES (2557, 2554, '盐源', '盐源县', '中国,四川省,凉山彝族自治州,盐源县', 3, 'yanyuan', '0836', '615700', 'Y', '101.5097', '27.42177');
INSERT INTO `tb_region` VALUES (2558, 2554, '德昌', '德昌县', '中国,四川省,凉山彝族自治州,德昌县', 3, 'dechang', '0837', '615500', 'D', '102.18017', '27.40482');
INSERT INTO `tb_region` VALUES (2559, 2554, '会理', '会理县', '中国,四川省,凉山彝族自治州,会理县', 3, 'huili', '0838', '615100', 'H', '102.24539', '26.65627');
INSERT INTO `tb_region` VALUES (2560, 2554, '会东', '会东县', '中国,四川省,凉山彝族自治州,会东县', 3, 'huidong', '0839', '615200', 'H', '102.57815', '26.63429');
INSERT INTO `tb_region` VALUES (2561, 2554, '宁南', '宁南县', '中国,四川省,凉山彝族自治州,宁南县', 3, 'ningnan', '0840', '615400', 'N', '102.76116', '27.06567');
INSERT INTO `tb_region` VALUES (2562, 2554, '普格', '普格县', '中国,四川省,凉山彝族自治州,普格县', 3, 'puge', '0841', '615300', 'P', '102.54055', '27.37485');
INSERT INTO `tb_region` VALUES (2563, 2554, '布拖', '布拖县', '中国,四川省,凉山彝族自治州,布拖县', 3, 'butuo', '0842', '616350', 'B', '102.81234', '27.7079');
INSERT INTO `tb_region` VALUES (2564, 2554, '金阳', '金阳县', '中国,四川省,凉山彝族自治州,金阳县', 3, 'jinyang', '0843', '616250', 'J', '103.24774', '27.69698');
INSERT INTO `tb_region` VALUES (2565, 2554, '昭觉', '昭觉县', '中国,四川省,凉山彝族自治州,昭觉县', 3, 'zhaojue', '0844', '616150', 'Z', '102.84661', '28.01155');
INSERT INTO `tb_region` VALUES (2566, 2554, '喜德', '喜德县', '中国,四川省,凉山彝族自治州,喜德县', 3, 'xide', '0845', '616750', 'X', '102.41336', '28.30739');
INSERT INTO `tb_region` VALUES (2567, 2554, '冕宁', '冕宁县', '中国,四川省,凉山彝族自治州,冕宁县', 3, 'mianning', '0846', '615600', 'M', '102.17108', '28.55161');
INSERT INTO `tb_region` VALUES (2568, 2554, '越西', '越西县', '中国,四川省,凉山彝族自治州,越西县', 3, 'yuexi', '0847', '616650', 'Y', '102.5079', '28.64133');
INSERT INTO `tb_region` VALUES (2569, 2554, '甘洛', '甘洛县', '中国,四川省,凉山彝族自治州,甘洛县', 3, 'ganluo', '0848', '616850', 'G', '102.77154', '28.96624');
INSERT INTO `tb_region` VALUES (2570, 2554, '美姑', '美姑县', '中国,四川省,凉山彝族自治州,美姑县', 3, 'meigu', '0849', '616450', 'M', '103.13116', '28.32596');
INSERT INTO `tb_region` VALUES (2571, 2554, '雷波', '雷波县', '中国,四川省,凉山彝族自治州,雷波县', 3, 'leibo', '0850', '616550', 'L', '103.57287', '28.26407');
INSERT INTO `tb_region` VALUES (2572, 0, '贵州', '贵州省', '中国,贵州省', 1, 'guizhou', '', '', 'G', '106.713478', '26.578343');
INSERT INTO `tb_region` VALUES (2573, 2572, '贵阳', '贵阳市', '中国,贵州省,贵阳市', 2, 'guiyang', '0851', '550001', 'G', '106.713478', '26.578343');
INSERT INTO `tb_region` VALUES (2574, 2573, '南明', '南明区', '中国,贵州省,贵阳市,南明区', 3, 'nanming', '0851', '550001', 'N', '106.7145', '26.56819');
INSERT INTO `tb_region` VALUES (2575, 2573, '云岩', '云岩区', '中国,贵州省,贵阳市,云岩区', 3, 'yunyan', '0851', '550001', 'Y', '106.72485', '26.60484');
INSERT INTO `tb_region` VALUES (2576, 2573, '花溪', '花溪区', '中国,贵州省,贵阳市,花溪区', 3, 'huaxi', '0851', '550025', 'H', '106.67688', '26.43343');
INSERT INTO `tb_region` VALUES (2577, 2573, '乌当', '乌当区', '中国,贵州省,贵阳市,乌当区', 3, 'wudang', '0851', '550018', 'W', '106.7521', '26.6302');
INSERT INTO `tb_region` VALUES (2578, 2573, '白云', '白云区', '中国,贵州省,贵阳市,白云区', 3, 'baiyun', '0851', '550014', 'B', '106.63088', '26.68284');
INSERT INTO `tb_region` VALUES (2579, 2573, '观山湖', '观山湖区', '中国,贵州省,贵阳市,观山湖区', 3, 'guanshanhu', '0851', '550009', 'G', '106.625442', '26.618209');
INSERT INTO `tb_region` VALUES (2580, 2573, '开阳', '开阳县', '中国,贵州省,贵阳市,开阳县', 3, 'kaiyang', '0851', '550300', 'K', '106.9692', '27.05533');
INSERT INTO `tb_region` VALUES (2581, 2573, '息烽', '息烽县', '中国,贵州省,贵阳市,息烽县', 3, 'xifeng', '0851', '551100', 'X', '106.738', '27.09346');
INSERT INTO `tb_region` VALUES (2582, 2573, '修文', '修文县', '中国,贵州省,贵阳市,修文县', 3, 'xiuwen', '0851', '550200', 'X', '106.59487', '26.83783');
INSERT INTO `tb_region` VALUES (2583, 2573, '清镇', '清镇市', '中国,贵州省,贵阳市,清镇市', 3, 'qingzhen', '0851', '551400', 'Q', '106.46862', '26.55261');
INSERT INTO `tb_region` VALUES (2584, 2572, '六盘水', '六盘水市', '中国,贵州省,六盘水市', 2, 'liupanshui', '0858', '553400', 'L', '104.846743', '26.584643');
INSERT INTO `tb_region` VALUES (2585, 2584, '钟山', '钟山区', '中国,贵州省,六盘水市,钟山区', 3, 'zhongshan', '0858', '553000', 'Z', '104.87848', '26.57699');
INSERT INTO `tb_region` VALUES (2586, 2584, '六枝', '六枝特区', '中国,贵州省,六盘水市,六枝特区', 3, 'liuzhi', '0858', '553400', 'L', '105.48062', '26.20117');
INSERT INTO `tb_region` VALUES (2587, 2584, '水城', '水城县', '中国,贵州省,六盘水市,水城县', 3, 'shuicheng', '0858', '553000', 'S', '104.95764', '26.54785');
INSERT INTO `tb_region` VALUES (2588, 2584, '盘县', '盘县', '中国,贵州省,六盘水市,盘县', 3, 'panxian', '0858', '561601', 'P', '104.47061', '25.7136');
INSERT INTO `tb_region` VALUES (2589, 2572, '遵义', '遵义市', '中国,贵州省,遵义市', 2, 'zunyi', '0852', '563000', 'Z', '106.937265', '27.706626');
INSERT INTO `tb_region` VALUES (2590, 2589, '红花岗', '红花岗区', '中国,贵州省,遵义市,红花岗区', 3, 'honghuagang', '0852', '563000', 'H', '106.89404', '27.64471');
INSERT INTO `tb_region` VALUES (2591, 2589, '汇川', '汇川区', '中国,贵州省,遵义市,汇川区', 3, 'huichuan', '0852', '563000', 'H', '106.9393', '27.70625');
INSERT INTO `tb_region` VALUES (2592, 2589, '遵义', '遵义县', '中国,贵州省,遵义市,遵义县', 3, 'zunyi', '0852', '563100', 'Z', '106.83331', '27.53772');
INSERT INTO `tb_region` VALUES (2593, 2589, '桐梓', '桐梓县', '中国,贵州省,遵义市,桐梓县', 3, 'tongzi', '0852', '563200', 'T', '106.82568', '28.13806');
INSERT INTO `tb_region` VALUES (2594, 2589, '绥阳', '绥阳县', '中国,贵州省,遵义市,绥阳县', 3, 'suiyang', '0852', '563300', 'S', '107.19064', '27.94702');
INSERT INTO `tb_region` VALUES (2595, 2589, '正安', '正安县', '中国,贵州省,遵义市,正安县', 3, 'zheng\'an', '0852', '563400', 'Z', '107.44357', '28.5512');
INSERT INTO `tb_region` VALUES (2596, 2589, '道真', '道真仡佬族苗族自治县', '中国,贵州省,遵义市,道真仡佬族苗族自治县', 3, 'daozhen', '0852', '563500', 'D', '107.61152', '28.864');
INSERT INTO `tb_region` VALUES (2597, 2589, '务川', '务川仡佬族苗族自治县', '中国,贵州省,遵义市,务川仡佬族苗族自治县', 3, 'wuchuan', '0852', '564300', 'W', '107.88935', '28.52227');
INSERT INTO `tb_region` VALUES (2598, 2589, '凤冈', '凤冈县', '中国,贵州省,遵义市,凤冈县', 3, 'fenggang', '0852', '564200', 'F', '107.71682', '27.95461');
INSERT INTO `tb_region` VALUES (2599, 2589, '湄潭', '湄潭县', '中国,贵州省,遵义市,湄潭县', 3, 'meitan', '0852', '564100', 'M', '107.48779', '27.76676');
INSERT INTO `tb_region` VALUES (2600, 2589, '余庆', '余庆县', '中国,贵州省,遵义市,余庆县', 3, 'yuqing', '0852', '564400', 'Y', '107.88821', '27.22532');
INSERT INTO `tb_region` VALUES (2601, 2589, '习水', '习水县', '中国,贵州省,遵义市,习水县', 3, 'xishui', '0852', '564600', 'X', '106.21267', '28.31976');
INSERT INTO `tb_region` VALUES (2602, 2589, '赤水', '赤水市', '中国,贵州省,遵义市,赤水市', 3, 'chishui', '0852', '564700', 'C', '105.69845', '28.58921');
INSERT INTO `tb_region` VALUES (2603, 2589, '仁怀', '仁怀市', '中国,贵州省,遵义市,仁怀市', 3, 'renhuai', '0852', '564500', 'R', '106.40152', '27.79231');
INSERT INTO `tb_region` VALUES (2604, 2572, '安顺', '安顺市', '中国,贵州省,安顺市', 2, 'anshun', '0853', '561000', 'A', '105.932188', '26.245544');
INSERT INTO `tb_region` VALUES (2605, 2604, '西秀', '西秀区', '中国,贵州省,安顺市,西秀区', 3, 'xixiu', '0853', '561000', 'X', '105.96585', '26.24491');
INSERT INTO `tb_region` VALUES (2606, 2604, '平坝', '平坝区', '中国,贵州省,安顺市,平坝区', 3, 'pingba', '0853', '561100', 'P', '106.25683', '26.40543');
INSERT INTO `tb_region` VALUES (2607, 2604, '普定', '普定县', '中国,贵州省,安顺市,普定县', 3, 'puding', '0853', '562100', 'P', '105.74285', '26.30141');
INSERT INTO `tb_region` VALUES (2608, 2604, '镇宁', '镇宁布依族苗族自治县', '中国,贵州省,安顺市,镇宁布依族苗族自治县', 3, 'zhenning', '0853', '561200', 'Z', '105.76513', '26.05533');
INSERT INTO `tb_region` VALUES (2609, 2604, '关岭', '关岭布依族苗族自治县', '中国,贵州省,安顺市,关岭布依族苗族自治县', 3, 'guanling', '0853', '561300', 'G', '105.61883', '25.94248');
INSERT INTO `tb_region` VALUES (2610, 2604, '紫云', '紫云苗族布依族自治县', '中国,贵州省,安顺市,紫云苗族布依族自治县', 3, 'ziyun', '0853', '550800', 'Z', '106.08364', '25.75258');
INSERT INTO `tb_region` VALUES (2611, 2572, '毕节', '毕节市', '中国,贵州省,毕节市', 2, 'bijie', '0857', '551700', 'B', '105.28501', '27.301693');
INSERT INTO `tb_region` VALUES (2612, 2611, '七星关', '七星关区', '中国,贵州省,毕节市,七星关区', 3, 'qixingguan', '0857', '551700', 'Q', '104.9497', '27.153556');
INSERT INTO `tb_region` VALUES (2613, 2611, '大方', '大方县', '中国,贵州省,毕节市,大方县', 3, 'dafang', '0857', '551600', 'D', '105.609254', '27.143521');
INSERT INTO `tb_region` VALUES (2614, 2611, '黔西', '黔西县', '中国,贵州省,毕节市,黔西县', 3, 'qianxi', '0857', '551500', 'Q', '106.038299', '27.024923');
INSERT INTO `tb_region` VALUES (2615, 2611, '金沙', '金沙县', '中国,贵州省,毕节市,金沙县', 3, 'jinsha', '0857', '551800', 'J', '106.222103', '27.459693');
INSERT INTO `tb_region` VALUES (2616, 2611, '织金', '织金县', '中国,贵州省,毕节市,织金县', 3, 'zhijin', '0857', '552100', 'Z', '105.768997', '26.668497');
INSERT INTO `tb_region` VALUES (2617, 2611, '纳雍', '纳雍县', '中国,贵州省,毕节市,纳雍县', 3, 'nayong', '0857', '553300', 'N', '105.375322', '26.769875');
INSERT INTO `tb_region` VALUES (2618, 2611, '威宁', '威宁彝族回族苗族自治县', '中国,贵州省,毕节市,威宁彝族回族苗族自治县', 3, 'weining', '0857', '553100', 'W', '104.286523', '26.859099');
INSERT INTO `tb_region` VALUES (2619, 2611, '赫章', '赫章县', '中国,贵州省,毕节市,赫章县', 3, 'hezhang', '0857', '553200', 'H', '104.726438', '27.119243');
INSERT INTO `tb_region` VALUES (2620, 2572, '铜仁', '铜仁市', '中国,贵州省,铜仁市', 2, 'tongren', '0856', '554300', 'T', '109.191555', '27.718346');
INSERT INTO `tb_region` VALUES (2621, 2620, '碧江', '碧江区', '中国,贵州省,铜仁市,碧江区', 3, 'bijiang', '0856', '554300', 'B', '109.191555', '27.718346');
INSERT INTO `tb_region` VALUES (2622, 2620, '万山', '万山区', '中国,贵州省,铜仁市,万山区', 3, 'wanshan', '0856', '554200', 'W', '109.21199', '27.51903');
INSERT INTO `tb_region` VALUES (2623, 2620, '江口', '江口县', '中国,贵州省,铜仁市,江口县', 3, 'jiangkou', '0856', '554400', 'J', '108.848427', '27.691904');
INSERT INTO `tb_region` VALUES (2624, 2620, '玉屏', '玉屏侗族自治县', '中国,贵州省,铜仁市,玉屏侗族自治县', 3, 'yuping', '0856', '554004', 'Y', '108.917882', '27.238024');
INSERT INTO `tb_region` VALUES (2625, 2620, '石阡', '石阡县', '中国,贵州省,铜仁市,石阡县', 3, 'shiqian', '0856', '555100', 'S', '108.229854', '27.519386');
INSERT INTO `tb_region` VALUES (2626, 2620, '思南', '思南县', '中国,贵州省,铜仁市,思南县', 3, 'sinan', '0856', '565100', 'S', '108.255827', '27.941331');
INSERT INTO `tb_region` VALUES (2627, 2620, '印江', '印江土家族苗族自治县', '中国,贵州省,铜仁市,印江土家族苗族自治县', 3, 'yinjiang', '0856', '555200', 'Y', '108.405517', '27.997976');
INSERT INTO `tb_region` VALUES (2628, 2620, '德江', '德江县', '中国,贵州省,铜仁市,德江县', 3, 'dejiang', '0856', '565200', 'D', '108.117317', '28.26094');
INSERT INTO `tb_region` VALUES (2629, 2620, '沿河', '沿河土家族自治县', '中国,贵州省,铜仁市,沿河土家族自治县', 3, 'yuanhe', '0856', '565300', 'Y', '108.495746', '28.560487');
INSERT INTO `tb_region` VALUES (2630, 2620, '松桃', '松桃苗族自治县', '中国,贵州省,铜仁市,松桃苗族自治县', 3, 'songtao', '0856', '554100', 'S', '109.202627', '28.165419');
INSERT INTO `tb_region` VALUES (2631, 2572, '黔西南', '黔西南布依族苗族自治州', '中国,贵州省,黔西南布依族苗族自治州', 2, 'qianxinan', '0859', '562400', 'Q', '104.897971', '25.08812');
INSERT INTO `tb_region` VALUES (2632, 2631, '兴义', '兴义市 ', '中国,贵州省,黔西南布依族苗族自治州,兴义市 ', 3, 'xingyi', '0859', '562400', 'X', '104.89548', '25.09205');
INSERT INTO `tb_region` VALUES (2633, 2631, '兴仁', '兴仁县', '中国,贵州省,黔西南布依族苗族自治州,兴仁县', 3, 'xingren', '0859', '562300', 'X', '105.18652', '25.43282');
INSERT INTO `tb_region` VALUES (2634, 2631, '普安', '普安县', '中国,贵州省,黔西南布依族苗族自治州,普安县', 3, 'pu\'an', '0859', '561500', 'P', '104.95529', '25.78603');
INSERT INTO `tb_region` VALUES (2635, 2631, '晴隆', '晴隆县', '中国,贵州省,黔西南布依族苗族自治州,晴隆县', 3, 'qinglong', '0859', '561400', 'Q', '105.2192', '25.83522');
INSERT INTO `tb_region` VALUES (2636, 2631, '贞丰', '贞丰县', '中国,贵州省,黔西南布依族苗族自治州,贞丰县', 3, 'zhenfeng', '0859', '562200', 'Z', '105.65454', '25.38464');
INSERT INTO `tb_region` VALUES (2637, 2631, '望谟', '望谟县', '中国,贵州省,黔西南布依族苗族自治州,望谟县', 3, 'wangmo', '0859', '552300', 'W', '106.09957', '25.17822');
INSERT INTO `tb_region` VALUES (2638, 2631, '册亨', '册亨县', '中国,贵州省,黔西南布依族苗族自治州,册亨县', 3, 'ceheng', '0859', '552200', 'C', '105.8124', '24.98376');
INSERT INTO `tb_region` VALUES (2639, 2631, '安龙', '安龙县', '中国,贵州省,黔西南布依族苗族自治州,安龙县', 3, 'anlong', '0859', '552400', 'A', '105.44268', '25.09818');
INSERT INTO `tb_region` VALUES (2640, 2572, '黔东南', '黔东南苗族侗族自治州', '中国,贵州省,黔东南苗族侗族自治州', 2, 'qiandongnan', '0855', '556000', 'Q', '107.977488', '26.583352');
INSERT INTO `tb_region` VALUES (2641, 2640, '凯里', '凯里市', '中国,贵州省,黔东南苗族侗族自治州,凯里市', 3, 'kaili', '0855', '556000', 'K', '107.98132', '26.56689');
INSERT INTO `tb_region` VALUES (2642, 2640, '黄平', '黄平县', '中国,贵州省,黔东南苗族侗族自治州,黄平县', 3, 'huangping', '0855', '556100', 'H', '107.90179', '26.89573');
INSERT INTO `tb_region` VALUES (2643, 2640, '施秉', '施秉县', '中国,贵州省,黔东南苗族侗族自治州,施秉县', 3, 'shibing', '0855', '556200', 'S', '108.12597', '27.03495');
INSERT INTO `tb_region` VALUES (2644, 2640, '三穗', '三穗县', '中国,贵州省,黔东南苗族侗族自治州,三穗县', 3, 'sansui', '0855', '556500', 'S', '108.67132', '26.94765');
INSERT INTO `tb_region` VALUES (2645, 2640, '镇远', '镇远县', '中国,贵州省,黔东南苗族侗族自治州,镇远县', 3, 'zhenyuan', '0855', '557700', 'Z', '108.42721', '27.04933');
INSERT INTO `tb_region` VALUES (2646, 2640, '岑巩', '岑巩县', '中国,贵州省,黔东南苗族侗族自治州,岑巩县', 3, 'cengong', '0855', '557800', 'C', '108.81884', '27.17539');
INSERT INTO `tb_region` VALUES (2647, 2640, '天柱', '天柱县', '中国,贵州省,黔东南苗族侗族自治州,天柱县', 3, 'tianzhu', '0855', '556600', 'T', '109.20718', '26.90781');
INSERT INTO `tb_region` VALUES (2648, 2640, '锦屏', '锦屏县', '中国,贵州省,黔东南苗族侗族自治州,锦屏县', 3, 'jinping', '0855', '556700', 'J', '109.19982', '26.67635');
INSERT INTO `tb_region` VALUES (2649, 2640, '剑河', '剑河县', '中国,贵州省,黔东南苗族侗族自治州,剑河县', 3, 'jianhe', '0855', '556400', 'J', '108.5913', '26.6525');
INSERT INTO `tb_region` VALUES (2650, 2640, '台江', '台江县', '中国,贵州省,黔东南苗族侗族自治州,台江县', 3, 'taijiang', '0855', '556300', 'T', '108.31814', '26.66916');
INSERT INTO `tb_region` VALUES (2651, 2640, '黎平', '黎平县', '中国,贵州省,黔东南苗族侗族自治州,黎平县', 3, 'liping', '0855', '557300', 'L', '109.13607', '26.23114');
INSERT INTO `tb_region` VALUES (2652, 2640, '榕江', '榕江县', '中国,贵州省,黔东南苗族侗族自治州,榕江县', 3, 'rongjiang', '0855', '557200', 'R', '108.52072', '25.92421');
INSERT INTO `tb_region` VALUES (2653, 2640, '从江', '从江县', '中国,贵州省,黔东南苗族侗族自治州,从江县', 3, 'congjiang', '0855', '557400', 'C', '108.90527', '25.75415');
INSERT INTO `tb_region` VALUES (2654, 2640, '雷山', '雷山县', '中国,贵州省,黔东南苗族侗族自治州,雷山县', 3, 'leishan', '0855', '557100', 'L', '108.07745', '26.38385');
INSERT INTO `tb_region` VALUES (2655, 2640, '麻江', '麻江县', '中国,贵州省,黔东南苗族侗族自治州,麻江县', 3, 'majiang', '0855', '557600', 'M', '107.59155', '26.49235');
INSERT INTO `tb_region` VALUES (2656, 2640, '丹寨', '丹寨县', '中国,贵州省,黔东南苗族侗族自治州,丹寨县', 3, 'danzhai', '0855', '557500', 'D', '107.79718', '26.19816');
INSERT INTO `tb_region` VALUES (2657, 2572, '黔南', '黔南布依族苗族自治州', '中国,贵州省,黔南布依族苗族自治州', 2, 'qiannan', '0854', '558000', 'Q', '107.517156', '26.258219');
INSERT INTO `tb_region` VALUES (2658, 2657, '都匀', '都匀市', '中国,贵州省,黔南布依族苗族自治州,都匀市', 3, 'duyun', '0854', '558000', 'D', '107.51872', '26.2594');
INSERT INTO `tb_region` VALUES (2659, 2657, '福泉', '福泉市', '中国,贵州省,黔南布依族苗族自治州,福泉市', 3, 'fuquan', '0854', '550500', 'F', '107.51715', '26.67989');
INSERT INTO `tb_region` VALUES (2660, 2657, '荔波', '荔波县', '中国,贵州省,黔南布依族苗族自治州,荔波县', 3, 'libo', '0854', '558400', 'L', '107.88592', '25.4139');
INSERT INTO `tb_region` VALUES (2661, 2657, '贵定', '贵定县', '中国,贵州省,黔南布依族苗族自治州,贵定县', 3, 'guiding', '0854', '551300', 'G', '107.23654', '26.57812');
INSERT INTO `tb_region` VALUES (2662, 2657, '瓮安', '瓮安县', '中国,贵州省,黔南布依族苗族自治州,瓮安县', 3, 'weng\'an', '0854', '550400', 'W', '107.4757', '27.06813');
INSERT INTO `tb_region` VALUES (2663, 2657, '独山', '独山县', '中国,贵州省,黔南布依族苗族自治州,独山县', 3, 'dushan', '0854', '558200', 'D', '107.54101', '25.8245');
INSERT INTO `tb_region` VALUES (2664, 2657, '平塘', '平塘县', '中国,贵州省,黔南布依族苗族自治州,平塘县', 3, 'pingtang', '0854', '558300', 'P', '107.32428', '25.83294');
INSERT INTO `tb_region` VALUES (2665, 2657, '罗甸', '罗甸县', '中国,贵州省,黔南布依族苗族自治州,罗甸县', 3, 'luodian', '0854', '550100', 'L', '106.75186', '25.42586');
INSERT INTO `tb_region` VALUES (2666, 2657, '长顺', '长顺县', '中国,贵州省,黔南布依族苗族自治州,长顺县', 3, 'changshun', '0854', '550700', 'C', '106.45217', '26.02299');
INSERT INTO `tb_region` VALUES (2667, 2657, '龙里', '龙里县', '中国,贵州省,黔南布依族苗族自治州,龙里县', 3, 'longli', '0854', '551200', 'L', '106.97662', '26.45076');
INSERT INTO `tb_region` VALUES (2668, 2657, '惠水', '惠水县', '中国,贵州省,黔南布依族苗族自治州,惠水县', 3, 'huishui', '0854', '550600', 'H', '106.65911', '26.13389');
INSERT INTO `tb_region` VALUES (2669, 2657, '三都', '三都水族自治县', '中国,贵州省,黔南布依族苗族自治州,三都水族自治县', 3, 'sandu', '0854', '558100', 'S', '107.87464', '25.98562');
INSERT INTO `tb_region` VALUES (2670, 0, '云南', '云南省', '中国,云南省', 1, 'yunnan', '', '', 'Y', '102.712251', '25.040609');
INSERT INTO `tb_region` VALUES (2671, 2670, '昆明', '昆明市', '中国,云南省,昆明市', 2, 'kunming', '0871', '650500', 'K', '102.712251', '25.040609');
INSERT INTO `tb_region` VALUES (2672, 2671, '五华', '五华区', '中国,云南省,昆明市,五华区', 3, 'wuhua', '0871', '650021', 'W', '102.70786', '25.03521');
INSERT INTO `tb_region` VALUES (2673, 2671, '盘龙', '盘龙区', '中国,云南省,昆明市,盘龙区', 3, 'panlong', '0871', '650051', 'P', '102.71994', '25.04053');
INSERT INTO `tb_region` VALUES (2674, 2671, '官渡', '官渡区', '中国,云南省,昆明市,官渡区', 3, 'guandu', '0871', '650200', 'G', '102.74362', '25.01497');
INSERT INTO `tb_region` VALUES (2675, 2671, '西山', '西山区', '中国,云南省,昆明市,西山区', 3, 'xishan', '0871', '650118', 'X', '102.66464', '25.03796');
INSERT INTO `tb_region` VALUES (2676, 2671, '东川', '东川区', '中国,云南省,昆明市,东川区', 3, 'dongchuan', '0871', '654100', 'D', '103.18832', '26.083');
INSERT INTO `tb_region` VALUES (2677, 2671, '呈贡', '呈贡区', '中国,云南省,昆明市,呈贡区', 3, 'chenggong', '0871', '650500', 'C', '102.801382', '24.889275');
INSERT INTO `tb_region` VALUES (2678, 2671, '晋宁', '晋宁县', '中国,云南省,昆明市,晋宁县', 3, 'jinning', '0871', '650600', 'J', '102.59393', '24.6665');
INSERT INTO `tb_region` VALUES (2679, 2671, '富民', '富民县', '中国,云南省,昆明市,富民县', 3, 'fumin', '0871', '650400', 'F', '102.4985', '25.22119');
INSERT INTO `tb_region` VALUES (2680, 2671, '宜良', '宜良县', '中国,云南省,昆明市,宜良县', 3, 'yiliang', '0871', '652100', 'Y', '103.14117', '24.91705');
INSERT INTO `tb_region` VALUES (2681, 2671, '石林', '石林彝族自治县', '中国,云南省,昆明市,石林彝族自治县', 3, 'shilin', '0871', '652200', 'S', '103.27148', '24.75897');
INSERT INTO `tb_region` VALUES (2682, 2671, '嵩明', '嵩明县', '中国,云南省,昆明市,嵩明县', 3, 'songming', '0871', '651700', 'S', '103.03729', '25.33986');
INSERT INTO `tb_region` VALUES (2683, 2671, '禄劝', '禄劝彝族苗族自治县', '中国,云南省,昆明市,禄劝彝族苗族自治县', 3, 'luquan', '0871', '651500', 'L', '102.4671', '25.55387');
INSERT INTO `tb_region` VALUES (2684, 2671, '寻甸', '寻甸回族彝族自治县 ', '中国,云南省,昆明市,寻甸回族彝族自治县 ', 3, 'xundian', '0871', '655200', 'X', '103.2557', '25.55961');
INSERT INTO `tb_region` VALUES (2685, 2671, '安宁', '安宁市', '中国,云南省,昆明市,安宁市', 3, 'anning', '0871', '650300', 'A', '102.46972', '24.91652');
INSERT INTO `tb_region` VALUES (2686, 2670, '曲靖', '曲靖市', '中国,云南省,曲靖市', 2, 'qujing', '0874', '655000', 'Q', '103.797851', '25.501557');
INSERT INTO `tb_region` VALUES (2687, 2686, '麒麟', '麒麟区', '中国,云南省,曲靖市,麒麟区', 3, 'qilin', '0874', '655000', 'Q', '103.80504', '25.49515');
INSERT INTO `tb_region` VALUES (2688, 2686, '马龙', '马龙县', '中国,云南省,曲靖市,马龙县', 3, 'malong', '0874', '655100', 'M', '103.57873', '25.42521');
INSERT INTO `tb_region` VALUES (2689, 2686, '陆良', '陆良县', '中国,云南省,曲靖市,陆良县', 3, 'luliang', '0874', '655600', 'L', '103.6665', '25.02335');
INSERT INTO `tb_region` VALUES (2690, 2686, '师宗', '师宗县', '中国,云南省,曲靖市,师宗县', 3, 'shizong', '0874', '655700', 'S', '103.99084', '24.82822');
INSERT INTO `tb_region` VALUES (2691, 2686, '罗平', '罗平县', '中国,云南省,曲靖市,罗平县', 3, 'luoping', '0874', '655800', 'L', '104.30859', '24.88444');
INSERT INTO `tb_region` VALUES (2692, 2686, '富源', '富源县', '中国,云南省,曲靖市,富源县', 3, 'fuyuan', '0874', '655500', 'F', '104.25387', '25.66587');
INSERT INTO `tb_region` VALUES (2693, 2686, '会泽', '会泽县', '中国,云南省,曲靖市,会泽县', 3, 'huize', '0874', '654200', 'H', '103.30017', '26.41076');
INSERT INTO `tb_region` VALUES (2694, 2686, '沾益', '沾益县', '中国,云南省,曲靖市,沾益县', 3, 'zhanyi', '0874', '655331', 'Z', '103.82135', '25.60715');
INSERT INTO `tb_region` VALUES (2695, 2686, '宣威', '宣威市', '中国,云南省,曲靖市,宣威市', 3, 'xuanwei', '0874', '655400', 'X', '104.10409', '26.2173');
INSERT INTO `tb_region` VALUES (2696, 2670, '玉溪', '玉溪市', '中国,云南省,玉溪市', 2, 'yuxi', '0877', '653100', 'Y', '102.543907', '24.350461');
INSERT INTO `tb_region` VALUES (2697, 2696, '红塔', '红塔区', '中国,云南省,玉溪市,红塔区', 3, 'hongta', '0877', '653100', 'H', '102.5449', '24.35411');
INSERT INTO `tb_region` VALUES (2698, 2696, '江川', '江川县', '中国,云南省,玉溪市,江川县', 3, 'jiangchuan', '0877', '652600', 'J', '102.75412', '24.28863');
INSERT INTO `tb_region` VALUES (2699, 2696, '澄江', '澄江县', '中国,云南省,玉溪市,澄江县', 3, 'chengjiang', '0877', '652500', 'C', '102.90817', '24.67376');
INSERT INTO `tb_region` VALUES (2700, 2696, '通海', '通海县', '中国,云南省,玉溪市,通海县', 3, 'tonghai', '0877', '652700', 'T', '102.76641', '24.11362');
INSERT INTO `tb_region` VALUES (2701, 2696, '华宁', '华宁县', '中国,云南省,玉溪市,华宁县', 3, 'huaning', '0877', '652800', 'H', '102.92831', '24.1926');
INSERT INTO `tb_region` VALUES (2702, 2696, '易门', '易门县', '中国,云南省,玉溪市,易门县', 3, 'yimen', '0877', '651100', 'Y', '102.16354', '24.67122');
INSERT INTO `tb_region` VALUES (2703, 2696, '峨山', '峨山彝族自治县', '中国,云南省,玉溪市,峨山彝族自治县', 3, 'eshan', '0877', '653200', 'E', '102.40576', '24.16904');
INSERT INTO `tb_region` VALUES (2704, 2696, '新平', '新平彝族傣族自治县', '中国,云南省,玉溪市,新平彝族傣族自治县', 3, 'xinping', '0877', '653400', 'X', '101.98895', '24.06886');
INSERT INTO `tb_region` VALUES (2705, 2696, '元江', '元江哈尼族彝族傣族自治县', '中国,云南省,玉溪市,元江哈尼族彝族傣族自治县', 3, 'yuanjiang', '0877', '653300', 'Y', '101.99812', '23.59655');
INSERT INTO `tb_region` VALUES (2706, 2670, '保山', '保山市', '中国,云南省,保山市', 2, 'baoshan', '0875', '678000', 'B', '99.167133', '25.111802');
INSERT INTO `tb_region` VALUES (2707, 2706, '隆阳', '隆阳区', '中国,云南省,保山市,隆阳区', 3, 'longyang', '0875', '678000', 'L', '99.16334', '25.11163');
INSERT INTO `tb_region` VALUES (2708, 2706, '施甸', '施甸县', '中国,云南省,保山市,施甸县', 3, 'shidian', '0875', '678200', 'S', '99.18768', '24.72418');
INSERT INTO `tb_region` VALUES (2709, 2706, '腾冲', '腾冲县', '中国,云南省,保山市,腾冲县', 3, 'tengchong', '0875', '679100', 'T', '98.49414', '25.02539');
INSERT INTO `tb_region` VALUES (2710, 2706, '龙陵', '龙陵县', '中国,云南省,保山市,龙陵县', 3, 'longling', '0875', '678300', 'L', '98.69024', '24.58746');
INSERT INTO `tb_region` VALUES (2711, 2706, '昌宁', '昌宁县', '中国,云南省,保山市,昌宁县', 3, 'changning', '0875', '678100', 'C', '99.6036', '24.82763');
INSERT INTO `tb_region` VALUES (2712, 2670, '昭通', '昭通市', '中国,云南省,昭通市', 2, 'zhaotong', '0870', '657000', 'Z', '103.717216', '27.336999');
INSERT INTO `tb_region` VALUES (2713, 2712, '昭阳', '昭阳区', '中国,云南省,昭通市,昭阳区', 3, 'zhaoyang', '0870', '657000', 'Z', '103.70654', '27.31998');
INSERT INTO `tb_region` VALUES (2714, 2712, '鲁甸', '鲁甸县', '中国,云南省,昭通市,鲁甸县', 3, 'ludian', '0870', '657100', 'L', '103.54721', '27.19238');
INSERT INTO `tb_region` VALUES (2715, 2712, '巧家', '巧家县', '中国,云南省,昭通市,巧家县', 3, 'qiaojia', '0870', '654600', 'Q', '102.92416', '26.91237');
INSERT INTO `tb_region` VALUES (2716, 2712, '盐津', '盐津县', '中国,云南省,昭通市,盐津县', 3, 'yanjin', '0870', '657500', 'Y', '104.23461', '28.10856');
INSERT INTO `tb_region` VALUES (2717, 2712, '大关', '大关县', '中国,云南省,昭通市,大关县', 3, 'daguan', '0870', '657400', 'D', '103.89254', '27.7488');
INSERT INTO `tb_region` VALUES (2718, 2712, '永善', '永善县', '中国,云南省,昭通市,永善县', 3, 'yongshan', '0870', '657300', 'Y', '103.63504', '28.2279');
INSERT INTO `tb_region` VALUES (2719, 2712, '绥江', '绥江县', '中国,云南省,昭通市,绥江县', 3, 'suijiang', '0870', '657700', 'S', '103.94937', '28.59661');
INSERT INTO `tb_region` VALUES (2720, 2712, '镇雄', '镇雄县', '中国,云南省,昭通市,镇雄县', 3, 'zhenxiong', '0870', '657200', 'Z', '104.87258', '27.43981');
INSERT INTO `tb_region` VALUES (2721, 2712, '彝良', '彝良县', '中国,云南省,昭通市,彝良县', 3, 'yiliang', '0870', '657600', 'Y', '104.04983', '27.62809');
INSERT INTO `tb_region` VALUES (2722, 2712, '威信', '威信县', '中国,云南省,昭通市,威信县', 3, 'weixin', '0870', '657900', 'W', '105.04754', '27.84065');
INSERT INTO `tb_region` VALUES (2723, 2712, '水富', '水富县', '中国,云南省,昭通市,水富县', 3, 'shuifu', '0870', '657800', 'S', '104.4158', '28.62986');
INSERT INTO `tb_region` VALUES (2724, 2670, '丽江', '丽江市', '中国,云南省,丽江市', 2, 'lijiang', '0888', '674100', 'L', '100.233026', '26.872108');
INSERT INTO `tb_region` VALUES (2725, 2724, '古城', '古城区', '中国,云南省,丽江市,古城区', 3, 'gucheng', '0888', '674100', 'G', '100.2257', '26.87697');
INSERT INTO `tb_region` VALUES (2726, 2724, '玉龙', '玉龙纳西族自治县', '中国,云南省,丽江市,玉龙纳西族自治县', 3, 'yulong', '0888', '674100', 'Y', '100.2369', '26.82149');
INSERT INTO `tb_region` VALUES (2727, 2724, '永胜', '永胜县', '中国,云南省,丽江市,永胜县', 3, 'yongsheng', '0888', '674200', 'Y', '100.74667', '26.68591');
INSERT INTO `tb_region` VALUES (2728, 2724, '华坪', '华坪县', '中国,云南省,丽江市,华坪县', 3, 'huaping', '0888', '674800', 'H', '101.26562', '26.62967');
INSERT INTO `tb_region` VALUES (2729, 2724, '宁蒗', '宁蒗彝族自治县', '中国,云南省,丽江市,宁蒗彝族自治县', 3, 'ninglang', '0888', '674300', 'N', '100.8507', '27.28179');
INSERT INTO `tb_region` VALUES (2730, 2670, '普洱', '普洱市', '中国,云南省,普洱市', 2, 'pu\'er', '0879', '665000', 'P', '100.972344', '22.777321');
INSERT INTO `tb_region` VALUES (2731, 2730, '思茅', '思茅区', '中国,云南省,普洱市,思茅区', 3, 'simao', '0879', '665000', 'S', '100.97716', '22.78691');
INSERT INTO `tb_region` VALUES (2732, 2730, '宁洱', '宁洱哈尼族彝族自治县', '中国,云南省,普洱市,宁洱哈尼族彝族自治县', 3, 'ninger', '0879', '665100', 'N', '101.04653', '23.06341');
INSERT INTO `tb_region` VALUES (2733, 2730, '墨江', '墨江哈尼族自治县', '中国,云南省,普洱市,墨江哈尼族自治县', 3, 'mojiang', '0879', '654800', 'M', '101.69171', '23.43214');
INSERT INTO `tb_region` VALUES (2734, 2730, '景东', '景东彝族自治县', '中国,云南省,普洱市,景东彝族自治县', 3, 'jingdong', '0879', '676200', 'J', '100.83599', '24.44791');
INSERT INTO `tb_region` VALUES (2735, 2730, '景谷', '景谷傣族彝族自治县', '中国,云南省,普洱市,景谷傣族彝族自治县', 3, 'jinggu', '0879', '666400', 'J', '100.70251', '23.49705');
INSERT INTO `tb_region` VALUES (2736, 2730, '镇沅', '镇沅彝族哈尼族拉祜族自治县', '中国,云南省,普洱市,镇沅彝族哈尼族拉祜族自治县', 3, 'zhenyuan', '0879', '666500', 'Z', '101.10675', '24.00557');
INSERT INTO `tb_region` VALUES (2737, 2730, '江城', '江城哈尼族彝族自治县', '中国,云南省,普洱市,江城哈尼族彝族自治县', 3, 'jiangcheng', '0879', '665900', 'J', '101.85788', '22.58424');
INSERT INTO `tb_region` VALUES (2738, 2730, '孟连', '孟连傣族拉祜族佤族自治县', '中国,云南省,普洱市,孟连傣族拉祜族佤族自治县', 3, 'menglian', '0879', '665800', 'M', '99.58424', '22.32922');
INSERT INTO `tb_region` VALUES (2739, 2730, '澜沧', '澜沧拉祜族自治县', '中国,云南省,普洱市,澜沧拉祜族自治县', 3, 'lancang', '0879', '665600', 'L', '99.93591', '22.55474');
INSERT INTO `tb_region` VALUES (2740, 2730, '西盟', '西盟佤族自治县', '中国,云南省,普洱市,西盟佤族自治县', 3, 'ximeng', '0879', '665700', 'X', '99.59869', '22.64774');
INSERT INTO `tb_region` VALUES (2741, 2670, '临沧', '临沧市', '中国,云南省,临沧市', 2, 'lincang', '0883', '677000', 'L', '100.08697', '23.886567');
INSERT INTO `tb_region` VALUES (2742, 2741, '临翔', '临翔区', '中国,云南省,临沧市,临翔区', 3, 'linxiang', '0883', '677000', 'L', '100.08242', '23.89497');
INSERT INTO `tb_region` VALUES (2743, 2741, '凤庆', '凤庆县', '中国,云南省,临沧市,凤庆县', 3, 'fengqing', '0883', '675900', 'F', '99.92837', '24.58034');
INSERT INTO `tb_region` VALUES (2744, 2741, '云县', '云县', '中国,云南省,临沧市,云县', 3, 'yunxian', '0883', '675800', 'Y', '100.12808', '24.44675');
INSERT INTO `tb_region` VALUES (2745, 2741, '永德', '永德县', '中国,云南省,临沧市,永德县', 3, 'yongde', '0883', '677600', 'Y', '99.25326', '24.0276');
INSERT INTO `tb_region` VALUES (2746, 2741, '镇康', '镇康县', '中国,云南省,临沧市,镇康县', 3, 'zhenkang', '0883', '677704', 'Z', '98.8255', '23.76241');
INSERT INTO `tb_region` VALUES (2747, 2741, '双江', '双江拉祜族佤族布朗族傣族自治县', '中国,云南省,临沧市,双江拉祜族佤族布朗族傣族自治县', 3, 'shuangjiang', '0883', '677300', 'S', '99.82769', '23.47349');
INSERT INTO `tb_region` VALUES (2748, 2741, '耿马', '耿马傣族佤族自治县', '中国,云南省,临沧市,耿马傣族佤族自治县', 3, 'gengma', '0883', '677500', 'G', '99.39785', '23.53776');
INSERT INTO `tb_region` VALUES (2749, 2741, '沧源', '沧源佤族自治县', '中国,云南省,临沧市,沧源佤族自治县', 3, 'cangyuan', '0883', '677400', 'C', '99.24545', '23.14821');
INSERT INTO `tb_region` VALUES (2750, 2670, '楚雄', '楚雄彝族自治州', '中国,云南省,楚雄彝族自治州', 2, 'chuxiong', '0878', '675000', 'C', '101.546046', '25.041988');
INSERT INTO `tb_region` VALUES (2751, 2750, '楚雄', '楚雄市', '中国,云南省,楚雄彝族自治州,楚雄市', 3, 'chuxiong', '0878', '675000', 'C', '101.54615', '25.0329');
INSERT INTO `tb_region` VALUES (2752, 2750, '双柏', '双柏县', '中国,云南省,楚雄彝族自治州,双柏县', 3, 'shuangbai', '0878', '675100', 'S', '101.64205', '24.68882');
INSERT INTO `tb_region` VALUES (2753, 2750, '牟定', '牟定县', '中国,云南省,楚雄彝族自治州,牟定县', 3, 'mouding', '0878', '675500', 'M', '101.54', '25.31551');
INSERT INTO `tb_region` VALUES (2754, 2750, '南华', '南华县', '中国,云南省,楚雄彝族自治州,南华县', 3, 'nanhua', '0878', '675200', 'N', '101.27313', '25.19293');
INSERT INTO `tb_region` VALUES (2755, 2750, '姚安', '姚安县', '中国,云南省,楚雄彝族自治州,姚安县', 3, 'yao\'an', '0878', '675300', 'Y', '101.24279', '25.50467');
INSERT INTO `tb_region` VALUES (2756, 2750, '大姚', '大姚县', '中国,云南省,楚雄彝族自治州,大姚县', 3, 'dayao', '0878', '675400', 'D', '101.32397', '25.72218');
INSERT INTO `tb_region` VALUES (2757, 2750, '永仁', '永仁县', '中国,云南省,楚雄彝族自治州,永仁县', 3, 'yongren', '0878', '651400', 'Y', '101.6716', '26.05794');
INSERT INTO `tb_region` VALUES (2758, 2750, '元谋', '元谋县', '中国,云南省,楚雄彝族自治州,元谋县', 3, 'yuanmou', '0878', '651300', 'Y', '101.87728', '25.70438');
INSERT INTO `tb_region` VALUES (2759, 2750, '武定', '武定县', '中国,云南省,楚雄彝族自治州,武定县', 3, 'wuding', '0878', '651600', 'W', '102.4038', '25.5295');
INSERT INTO `tb_region` VALUES (2760, 2750, '禄丰', '禄丰县', '中国,云南省,楚雄彝族自治州,禄丰县', 3, 'lufeng', '0878', '651200', 'L', '102.07797', '25.14815');
INSERT INTO `tb_region` VALUES (2761, 2670, '红河', '红河哈尼族彝族自治州', '中国,云南省,红河哈尼族彝族自治州', 2, 'honghe', '0873', '661400', 'H', '103.384182', '23.366775');
INSERT INTO `tb_region` VALUES (2762, 2761, '个旧', '个旧市', '中国,云南省,红河哈尼族彝族自治州,个旧市', 3, 'gejiu', '0873', '661000', 'G', '103.15966', '23.35894');
INSERT INTO `tb_region` VALUES (2763, 2761, '开远', '开远市', '中国,云南省,红河哈尼族彝族自治州,开远市', 3, 'kaiyuan', '0873', '661600', 'K', '103.26986', '23.71012');
INSERT INTO `tb_region` VALUES (2764, 2761, '蒙自', '蒙自市', '中国,云南省,红河哈尼族彝族自治州,蒙自市', 3, 'mengzi', '0873', '661101', 'M', '103.385005', '23.366843');
INSERT INTO `tb_region` VALUES (2765, 2761, '弥勒', '弥勒市', '中国,云南省,红河哈尼族彝族自治州,弥勒市', 3, 'mile', '0873', '652300', 'M', '103.436988', '24.40837');
INSERT INTO `tb_region` VALUES (2766, 2761, '屏边', '屏边苗族自治县', '中国,云南省,红河哈尼族彝族自治州,屏边苗族自治县', 3, 'pingbian', '0873', '661200', 'P', '103.68554', '22.98425');
INSERT INTO `tb_region` VALUES (2767, 2761, '建水', '建水县', '中国,云南省,红河哈尼族彝族自治州,建水县', 3, 'jianshui', '0873', '654300', 'J', '102.82656', '23.63472');
INSERT INTO `tb_region` VALUES (2768, 2761, '石屏', '石屏县', '中国,云南省,红河哈尼族彝族自治州,石屏县', 3, 'shiping', '0873', '662200', 'S', '102.49408', '23.71441');
INSERT INTO `tb_region` VALUES (2769, 2761, '泸西', '泸西县', '中国,云南省,红河哈尼族彝族自治州,泸西县', 3, 'luxi', '0873', '652400', 'L', '103.76373', '24.52854');
INSERT INTO `tb_region` VALUES (2770, 2761, '元阳', '元阳县', '中国,云南省,红河哈尼族彝族自治州,元阳县', 3, 'yuanyang', '0873', '662400', 'Y', '102.83261', '23.22281');
INSERT INTO `tb_region` VALUES (2771, 2761, '红河县', '红河县', '中国,云南省,红河哈尼族彝族自治州,红河县', 3, 'honghexian', '0873', '654400', 'H', '102.42059', '23.36767');
INSERT INTO `tb_region` VALUES (2772, 2761, '金平', '金平苗族瑶族傣族自治县', '中国,云南省,红河哈尼族彝族自治州,金平苗族瑶族傣族自治县', 3, 'jinping', '0873', '661500', 'J', '103.22651', '22.77959');
INSERT INTO `tb_region` VALUES (2773, 2761, '绿春', '绿春县', '中国,云南省,红河哈尼族彝族自治州,绿春县', 3, 'lvchun', '0873', '662500', 'L', '102.39672', '22.99371');
INSERT INTO `tb_region` VALUES (2774, 2761, '河口', '河口瑶族自治县', '中国,云南省,红河哈尼族彝族自治州,河口瑶族自治县', 3, 'hekou', '0873', '661300', 'H', '103.93936', '22.52929');
INSERT INTO `tb_region` VALUES (2775, 2670, '文山', '文山壮族苗族自治州', '中国,云南省,文山壮族苗族自治州', 2, 'wenshan', '0876', '663000', 'W', '104.24401', '23.36951');
INSERT INTO `tb_region` VALUES (2776, 2775, '文山', '文山市', '中国,云南省,文山壮族苗族自治州,文山市', 3, 'wenshan', '0876', '663000', 'W', '104.244277', '23.369216');
INSERT INTO `tb_region` VALUES (2777, 2775, '砚山', '砚山县', '中国,云南省,文山壮族苗族自治州,砚山县', 3, 'yanshan', '0876', '663100', 'Y', '104.33306', '23.60723');
INSERT INTO `tb_region` VALUES (2778, 2775, '西畴', '西畴县', '中国,云南省,文山壮族苗族自治州,西畴县', 3, 'xichou', '0876', '663500', 'X', '104.67419', '23.43941');
INSERT INTO `tb_region` VALUES (2779, 2775, '麻栗坡', '麻栗坡县', '中国,云南省,文山壮族苗族自治州,麻栗坡县', 3, 'malipo', '0876', '663600', 'M', '104.70132', '23.12028');
INSERT INTO `tb_region` VALUES (2780, 2775, '马关', '马关县', '中国,云南省,文山壮族苗族自治州,马关县', 3, 'maguan', '0876', '663700', 'M', '104.39514', '23.01293');
INSERT INTO `tb_region` VALUES (2781, 2775, '丘北', '丘北县', '中国,云南省,文山壮族苗族自治州,丘北县', 3, 'qiubei', '0876', '663200', 'Q', '104.19256', '24.03957');
INSERT INTO `tb_region` VALUES (2782, 2775, '广南', '广南县', '中国,云南省,文山壮族苗族自治州,广南县', 3, 'guangnan', '0876', '663300', 'G', '105.05511', '24.0464');
INSERT INTO `tb_region` VALUES (2783, 2775, '富宁', '富宁县', '中国,云南省,文山壮族苗族自治州,富宁县', 3, 'funing', '0876', '663400', 'F', '105.63085', '23.62536');
INSERT INTO `tb_region` VALUES (2784, 2670, '西双版纳', '西双版纳傣族自治州', '中国,云南省,西双版纳傣族自治州', 2, 'xishuangbanna', '0691', '666100', 'X', '100.797941', '22.001724');
INSERT INTO `tb_region` VALUES (2785, 2784, '景洪', '景洪市', '中国,云南省,西双版纳傣族自治州,景洪市', 3, 'jinghong', '0691', '666100', 'J', '100.79977', '22.01071');
INSERT INTO `tb_region` VALUES (2786, 2784, '勐海', '勐海县', '中国,云南省,西双版纳傣族自治州,勐海县', 3, 'menghai', '0691', '666200', 'M', '100.44931', '21.96175');
INSERT INTO `tb_region` VALUES (2787, 2784, '勐腊', '勐腊县', '中国,云南省,西双版纳傣族自治州,勐腊县', 3, 'mengla', '0691', '666300', 'M', '101.56488', '21.48162');
INSERT INTO `tb_region` VALUES (2788, 2670, '大理', '大理白族自治州', '中国,云南省,大理白族自治州', 2, 'dali', '0872', '671000', 'D', '100.240037', '25.592765');
INSERT INTO `tb_region` VALUES (2789, 2788, '大理', '大理市', '中国,云南省,大理白族自治州,大理市', 3, 'dali', '0872', '671000', 'D', '100.22998', '25.59157');
INSERT INTO `tb_region` VALUES (2790, 2788, '漾濞', '漾濞彝族自治县', '中国,云南省,大理白族自治州,漾濞彝族自治县', 3, 'yangbi', '0872', '672500', 'Y', '99.95474', '25.6652');
INSERT INTO `tb_region` VALUES (2791, 2788, '祥云', '祥云县', '中国,云南省,大理白族自治州,祥云县', 3, 'xiangyun', '0872', '672100', 'X', '100.55761', '25.47342');
INSERT INTO `tb_region` VALUES (2792, 2788, '宾川', '宾川县', '中国,云南省,大理白族自治州,宾川县', 3, 'binchuan', '0872', '671600', 'B', '100.57666', '25.83144');
INSERT INTO `tb_region` VALUES (2793, 2788, '弥渡', '弥渡县', '中国,云南省,大理白族自治州,弥渡县', 3, 'midu', '0872', '675600', 'M', '100.49075', '25.34179');
INSERT INTO `tb_region` VALUES (2794, 2788, '南涧', '南涧彝族自治县', '中国,云南省,大理白族自治州,南涧彝族自治县', 3, 'nanjian', '0872', '675700', 'N', '100.50964', '25.04349');
INSERT INTO `tb_region` VALUES (2795, 2788, '巍山', '巍山彝族回族自治县', '中国,云南省,大理白族自治州,巍山彝族回族自治县', 3, 'weishan', '0872', '672400', 'W', '100.30612', '25.23197');
INSERT INTO `tb_region` VALUES (2796, 2788, '永平', '永平县', '中国,云南省,大理白族自治州,永平县', 3, 'yongping', '0872', '672600', 'Y', '99.54095', '25.46451');
INSERT INTO `tb_region` VALUES (2797, 2788, '云龙', '云龙县', '中国,云南省,大理白族自治州,云龙县', 3, 'yunlong', '0872', '672700', 'Y', '99.37255', '25.88505');
INSERT INTO `tb_region` VALUES (2798, 2788, '洱源', '洱源县', '中国,云南省,大理白族自治州,洱源县', 3, 'eryuan', '0872', '671200', 'E', '99.94903', '26.10829');
INSERT INTO `tb_region` VALUES (2799, 2788, '剑川', '剑川县', '中国,云南省,大理白族自治州,剑川县', 3, 'jianchuan', '0872', '671300', 'J', '99.90545', '26.53688');
INSERT INTO `tb_region` VALUES (2800, 2788, '鹤庆', '鹤庆县', '中国,云南省,大理白族自治州,鹤庆县', 3, 'heqing', '0872', '671500', 'H', '100.17697', '26.55798');
INSERT INTO `tb_region` VALUES (2801, 2670, '德宏', '德宏傣族景颇族自治州', '中国,云南省,德宏傣族景颇族自治州', 2, 'dehong', '0692', '678400', 'D', '98.578363', '24.436694');
INSERT INTO `tb_region` VALUES (2802, 2801, '瑞丽', '瑞丽市', '中国,云南省,德宏傣族景颇族自治州,瑞丽市', 3, 'ruili', '0692', '678600', 'R', '97.85183', '24.01277');
INSERT INTO `tb_region` VALUES (2803, 2801, '芒市', '芒市', '中国,云南省,德宏傣族景颇族自治州,芒市', 3, 'mangshi', '0692', '678400', 'M', '98.588641', '24.433735');
INSERT INTO `tb_region` VALUES (2804, 2801, '梁河', '梁河县', '中国,云南省,德宏傣族景颇族自治州,梁河县', 3, 'lianghe', '0692', '679200', 'L', '98.29705', '24.80658');
INSERT INTO `tb_region` VALUES (2805, 2801, '盈江', '盈江县', '中国,云南省,德宏傣族景颇族自治州,盈江县', 3, 'yingjiang', '0692', '679300', 'Y', '97.93179', '24.70579');
INSERT INTO `tb_region` VALUES (2806, 2801, '陇川', '陇川县', '中国,云南省,德宏傣族景颇族自治州,陇川县', 3, 'longchuan', '0692', '678700', 'L', '97.79199', '24.18302');
INSERT INTO `tb_region` VALUES (2807, 2670, '怒江', '怒江傈僳族自治州', '中国,云南省,怒江傈僳族自治州', 2, 'nujiang', '0886', '673100', 'N', '98.854304', '25.850949');
INSERT INTO `tb_region` VALUES (2808, 2807, '泸水', '泸水县', '中国,云南省,怒江傈僳族自治州,泸水县', 3, 'lushui', '0886', '673100', 'L', '98.85534', '25.83772');
INSERT INTO `tb_region` VALUES (2809, 2807, '福贡', '福贡县', '中国,云南省,怒江傈僳族自治州,福贡县', 3, 'fugong', '0886', '673400', 'F', '98.86969', '26.90366');
INSERT INTO `tb_region` VALUES (2810, 2807, '贡山', '贡山独龙族怒族自治县', '中国,云南省,怒江傈僳族自治州,贡山独龙族怒族自治县', 3, 'gongshan', '0886', '673500', 'G', '98.66583', '27.74088');
INSERT INTO `tb_region` VALUES (2811, 2807, '兰坪', '兰坪白族普米族自治县', '中国,云南省,怒江傈僳族自治州,兰坪白族普米族自治县', 3, 'lanping', '0886', '671400', 'L', '99.41891', '26.45251');
INSERT INTO `tb_region` VALUES (2812, 2670, '迪庆', '迪庆藏族自治州', '中国,云南省,迪庆藏族自治州', 2, 'deqen', '0887', '674400', 'D', '99.706463', '27.826853');
INSERT INTO `tb_region` VALUES (2813, 2812, '香格里拉', '香格里拉市', '中国,云南省,迪庆藏族自治州,香格里拉市', 3, 'xianggelila', '0887', '674400', 'X', '99.70601', '27.82308');
INSERT INTO `tb_region` VALUES (2814, 2812, '德钦', '德钦县', '中国,云南省,迪庆藏族自治州,德钦县', 3, 'deqin', '0887', '674500', 'D', '98.91082', '28.4863');
INSERT INTO `tb_region` VALUES (2815, 2812, '维西', '维西傈僳族自治县', '中国,云南省,迪庆藏族自治州,维西傈僳族自治县', 3, 'weixi', '0887', '674600', 'W', '99.28402', '27.1793');
INSERT INTO `tb_region` VALUES (2816, 0, '西藏', '西藏自治区', '中国,西藏自治区', 1, 'tibet', '', '', 'X', '91.132212', '29.660361');
INSERT INTO `tb_region` VALUES (2817, 2816, '拉萨', '拉萨市', '中国,西藏自治区,拉萨市', 2, 'lhasa', '0891', '850000', 'L', '91.132212', '29.660361');
INSERT INTO `tb_region` VALUES (2818, 2817, '城关', '城关区', '中国,西藏自治区,拉萨市,城关区', 3, 'chengguan', '0891', '850000', 'C', '91.13859', '29.65312');
INSERT INTO `tb_region` VALUES (2819, 2817, '林周', '林周县', '中国,西藏自治区,拉萨市,林周县', 3, 'linzhou', '0891', '851600', 'L', '91.2586', '29.89445');
INSERT INTO `tb_region` VALUES (2820, 2817, '当雄', '当雄县', '中国,西藏自治区,拉萨市,当雄县', 3, 'dangxiong', '0891', '851500', 'D', '91.10076', '30.48309');
INSERT INTO `tb_region` VALUES (2821, 2817, '尼木', '尼木县', '中国,西藏自治区,拉萨市,尼木县', 3, 'nimu', '0891', '851300', 'N', '90.16378', '29.43353');
INSERT INTO `tb_region` VALUES (2822, 2817, '曲水', '曲水县', '中国,西藏自治区,拉萨市,曲水县', 3, 'qushui', '0891', '850600', 'Q', '90.73187', '29.35636');
INSERT INTO `tb_region` VALUES (2823, 2817, '堆龙德庆', '堆龙德庆县', '中国,西藏自治区,拉萨市,堆龙德庆县', 3, 'duilongdeqing', '0891', '851400', 'D', '91.00033', '29.65002');
INSERT INTO `tb_region` VALUES (2824, 2817, '达孜', '达孜县', '中国,西藏自治区,拉萨市,达孜县', 3, 'dazi', '0891', '850100', 'D', '91.35757', '29.6722');
INSERT INTO `tb_region` VALUES (2825, 2817, '墨竹工卡', '墨竹工卡县', '中国,西藏自治区,拉萨市,墨竹工卡县', 3, 'mozhugongka', '0891', '850200', 'M', '91.72814', '29.83614');
INSERT INTO `tb_region` VALUES (2826, 2816, '日喀则', '日喀则市', '中国,西藏自治区,日喀则市', 2, 'rikaze', '0892', '857000', 'R', '88.884874', '29.263792');
INSERT INTO `tb_region` VALUES (2827, 2826, '桑珠孜', '桑珠孜区', '中国,西藏自治区,日喀则市,桑珠孜区', 3, 'sangzhuzi', '0892', '857000', 'S', '88.880367', '29.269565');
INSERT INTO `tb_region` VALUES (2828, 2826, '南木林', '南木林县', '中国,西藏自治区,日喀则市,南木林县', 3, 'nanmulin', '0892', '857100', 'N', '89.09686', '29.68206');
INSERT INTO `tb_region` VALUES (2829, 2826, '江孜', '江孜县', '中国,西藏自治区,日喀则市,江孜县', 3, 'jiangzi', '0892', '857400', 'J', '89.60263', '28.91744');
INSERT INTO `tb_region` VALUES (2830, 2826, '定日', '定日县', '中国,西藏自治区,日喀则市,定日县', 3, 'dingri', '0892', '858200', 'D', '87.12176', '28.66129');
INSERT INTO `tb_region` VALUES (2831, 2826, '萨迦', '萨迦县', '中国,西藏自治区,日喀则市,萨迦县', 3, 'sajia', '0892', '857800', 'S', '88.02191', '28.90299');
INSERT INTO `tb_region` VALUES (2832, 2826, '拉孜', '拉孜县', '中国,西藏自治区,日喀则市,拉孜县', 3, 'lazi', '0892', '858100', 'L', '87.63412', '29.085');
INSERT INTO `tb_region` VALUES (2833, 2826, '昂仁', '昂仁县', '中国,西藏自治区,日喀则市,昂仁县', 3, 'angren', '0892', '858500', 'A', '87.23858', '29.29496');
INSERT INTO `tb_region` VALUES (2834, 2826, '谢通门', '谢通门县', '中国,西藏自治区,日喀则市,谢通门县', 3, 'xietongmen', '0892', '858900', 'X', '88.26242', '29.43337');
INSERT INTO `tb_region` VALUES (2835, 2826, '白朗', '白朗县', '中国,西藏自治区,日喀则市,白朗县', 3, 'bailang', '0892', '857300', 'B', '89.26205', '29.10553');
INSERT INTO `tb_region` VALUES (2836, 2826, '仁布', '仁布县', '中国,西藏自治区,日喀则市,仁布县', 3, 'renbu', '0892', '857200', 'R', '89.84228', '29.2301');
INSERT INTO `tb_region` VALUES (2837, 2826, '康马', '康马县', '中国,西藏自治区,日喀则市,康马县', 3, 'kangma', '0892', '857500', 'K', '89.68527', '28.5567');
INSERT INTO `tb_region` VALUES (2838, 2826, '定结', '定结县', '中国,西藏自治区,日喀则市,定结县', 3, 'dingjie', '0892', '857900', 'D', '87.77255', '28.36403');
INSERT INTO `tb_region` VALUES (2839, 2826, '仲巴', '仲巴县', '中国,西藏自治区,日喀则市,仲巴县', 3, 'zhongba', '0892', '858800', 'Z', '84.02951', '29.76595');
INSERT INTO `tb_region` VALUES (2840, 2826, '亚东', '亚东县', '中国,西藏自治区,日喀则市,亚东县', 3, 'yadong', '0892', '857600', 'Y', '88.90802', '27.4839');
INSERT INTO `tb_region` VALUES (2841, 2826, '吉隆', '吉隆县', '中国,西藏自治区,日喀则市,吉隆县', 3, 'jilong', '0892', '858700', 'J', '85.29846', '28.85382');
INSERT INTO `tb_region` VALUES (2842, 2826, '聂拉木', '聂拉木县', '中国,西藏自治区,日喀则市,聂拉木县', 3, 'nielamu', '0892', '858300', 'N', '85.97998', '28.15645');
INSERT INTO `tb_region` VALUES (2843, 2826, '萨嘎', '萨嘎县', '中国,西藏自治区,日喀则市,萨嘎县', 3, 'saga', '0892', '857800', 'S', '85.23413', '29.32936');
INSERT INTO `tb_region` VALUES (2844, 2826, '岗巴', '岗巴县', '中国,西藏自治区,日喀则市,岗巴县', 3, 'gangba', '0892', '857700', 'G', '88.52069', '28.27504');
INSERT INTO `tb_region` VALUES (2845, 2816, '昌都', '昌都市', '中国,西藏自治区,昌都市', 2, 'qamdo', '0895', '854000', 'C', '97.178452', '31.136875');
INSERT INTO `tb_region` VALUES (2846, 2845, '昌都', '卡若区', '中国,西藏自治区,昌都市,卡若区', 3, 'karuo', '0895', '854000', 'K', '97.18043', '31.1385');
INSERT INTO `tb_region` VALUES (2847, 2845, '江达', '江达县', '中国,西藏自治区,昌都市,江达县', 3, 'jiangda', '0895', '854100', 'J', '98.21865', '31.50343');
INSERT INTO `tb_region` VALUES (2848, 2845, '贡觉', '贡觉县', '中国,西藏自治区,昌都市,贡觉县', 3, 'gongjue', '0895', '854200', 'G', '98.27163', '30.85941');
INSERT INTO `tb_region` VALUES (2849, 2845, '类乌齐', '类乌齐县', '中国,西藏自治区,昌都市,类乌齐县', 3, 'leiwuqi', '0895', '855600', 'L', '96.60015', '31.21207');
INSERT INTO `tb_region` VALUES (2850, 2845, '丁青', '丁青县', '中国,西藏自治区,昌都市,丁青县', 3, 'dingqing', '0895', '855700', 'D', '95.59362', '31.41621');
INSERT INTO `tb_region` VALUES (2851, 2845, '察雅', '察雅县', '中国,西藏自治区,昌都市,察雅县', 3, 'chaya', '0895', '854300', 'C', '97.56521', '30.65336');
INSERT INTO `tb_region` VALUES (2852, 2845, '八宿', '八宿县', '中国,西藏自治区,昌都市,八宿县', 3, 'basu', '0895', '854600', 'B', '96.9176', '30.05346');
INSERT INTO `tb_region` VALUES (2853, 2845, '左贡', '左贡县', '中国,西藏自治区,昌都市,左贡县', 3, 'zuogong', '0895', '854400', 'Z', '97.84429', '29.67108');
INSERT INTO `tb_region` VALUES (2854, 2845, '芒康', '芒康县', '中国,西藏自治区,昌都市,芒康县', 3, 'mangkang', '0895', '854500', 'M', '98.59378', '29.67946');
INSERT INTO `tb_region` VALUES (2855, 2845, '洛隆', '洛隆县', '中国,西藏自治区,昌都市,洛隆县', 3, 'luolong', '0895', '855400', 'L', '95.82644', '30.74049');
INSERT INTO `tb_region` VALUES (2856, 2845, '边坝', '边坝县', '中国,西藏自治区,昌都市,边坝县', 3, 'bianba', '0895', '855500', 'B', '94.70687', '30.93434');
INSERT INTO `tb_region` VALUES (2857, 2816, '山南', '山南地区', '中国,西藏自治区,山南地区', 2, 'shannan', '0893', '856000', 'S', '91.766529', '29.236023');
INSERT INTO `tb_region` VALUES (2858, 2857, '乃东', '乃东县', '中国,西藏自治区,山南地区,乃东县', 3, 'naidong', '0893', '856100', 'N', '91.76153', '29.2249');
INSERT INTO `tb_region` VALUES (2859, 2857, '扎囊', '扎囊县', '中国,西藏自治区,山南地区,扎囊县', 3, 'zhanang', '0893', '850800', 'Z', '91.33288', '29.2399');
INSERT INTO `tb_region` VALUES (2860, 2857, '贡嘎', '贡嘎县', '中国,西藏自治区,山南地区,贡嘎县', 3, 'gongga', '0893', '850700', 'G', '90.98867', '29.29408');
INSERT INTO `tb_region` VALUES (2861, 2857, '桑日', '桑日县', '中国,西藏自治区,山南地区,桑日县', 3, 'sangri', '0893', '856200', 'S', '92.02005', '29.26643');
INSERT INTO `tb_region` VALUES (2862, 2857, '琼结', '琼结县', '中国,西藏自治区,山南地区,琼结县', 3, 'qiongjie', '0893', '856800', 'Q', '91.68093', '29.02632');
INSERT INTO `tb_region` VALUES (2863, 2857, '曲松', '曲松县', '中国,西藏自治区,山南地区,曲松县', 3, 'qusong', '0893', '856300', 'Q', '92.20263', '29.06412');
INSERT INTO `tb_region` VALUES (2864, 2857, '措美', '措美县', '中国,西藏自治区,山南地区,措美县', 3, 'cuomei', '0893', '856900', 'C', '91.43237', '28.43794');
INSERT INTO `tb_region` VALUES (2865, 2857, '洛扎', '洛扎县', '中国,西藏自治区,山南地区,洛扎县', 3, 'luozha', '0893', '856600', 'L', '90.86035', '28.3872');
INSERT INTO `tb_region` VALUES (2866, 2857, '加查', '加查县', '中国,西藏自治区,山南地区,加查县', 3, 'jiacha', '0893', '856400', 'J', '92.57702', '29.13973');
INSERT INTO `tb_region` VALUES (2867, 2857, '隆子', '隆子县', '中国,西藏自治区,山南地区,隆子县', 3, 'longzi', '0893', '856600', 'L', '92.46148', '28.40797');
INSERT INTO `tb_region` VALUES (2868, 2857, '错那', '错那县', '中国,西藏自治区,山南地区,错那县', 3, 'cuona', '0893', '856700', 'C', '91.95752', '27.99224');
INSERT INTO `tb_region` VALUES (2869, 2857, '浪卡子', '浪卡子县', '中国,西藏自治区,山南地区,浪卡子县', 3, 'langkazi', '0893', '851100', 'L', '90.40002', '28.96948');
INSERT INTO `tb_region` VALUES (2870, 2816, '那曲', '那曲地区', '中国,西藏自治区,那曲地区', 2, 'nagqu', '0896', '852000', 'N', '92.060214', '31.476004');
INSERT INTO `tb_region` VALUES (2871, 2870, '那曲', '那曲县', '中国,西藏自治区,那曲地区,那曲县', 3, 'naqu', '0896', '852000', 'N', '92.0535', '31.46964');
INSERT INTO `tb_region` VALUES (2872, 2870, '嘉黎', '嘉黎县', '中国,西藏自治区,那曲地区,嘉黎县', 3, 'jiali', '0896', '852400', 'J', '93.24987', '30.64233');
INSERT INTO `tb_region` VALUES (2873, 2870, '比如', '比如县', '中国,西藏自治区,那曲地区,比如县', 3, 'biru', '0896', '852300', 'B', '93.68685', '31.4779');
INSERT INTO `tb_region` VALUES (2874, 2870, '聂荣', '聂荣县', '中国,西藏自治区,那曲地区,聂荣县', 3, 'nierong', '0896', '853500', 'N', '92.29574', '32.11193');
INSERT INTO `tb_region` VALUES (2875, 2870, '安多', '安多县', '中国,西藏自治区,那曲地区,安多县', 3, 'anduo', '0896', '853400', 'A', '91.6795', '32.26125');
INSERT INTO `tb_region` VALUES (2876, 2870, '申扎', '申扎县', '中国,西藏自治区,那曲地区,申扎县', 3, 'shenzha', '0896', '853100', 'S', '88.70776', '30.92995');
INSERT INTO `tb_region` VALUES (2877, 2870, '索县', '索县', '中国,西藏自治区,那曲地区,索县', 3, 'suoxian', '0896', '852200', 'S', '93.78295', '31.88427');
INSERT INTO `tb_region` VALUES (2878, 2870, '班戈', '班戈县', '中国,西藏自治区,那曲地区,班戈县', 3, 'bange', '0896', '852500', 'B', '90.01907', '31.36149');
INSERT INTO `tb_region` VALUES (2879, 2870, '巴青', '巴青县', '中国,西藏自治区,那曲地区,巴青县', 3, 'baqing', '0896', '852100', 'B', '94.05316', '31.91833');
INSERT INTO `tb_region` VALUES (2880, 2870, '尼玛', '尼玛县', '中国,西藏自治区,那曲地区,尼玛县', 3, 'nima', '0896', '852600', 'N', '87.25256', '31.79654');
INSERT INTO `tb_region` VALUES (2881, 2870, '双湖', '双湖县', '中国,西藏自治区,那曲地区,双湖县', 3, 'shuanghu', '0896', '852600', 'S', '88.837776', '33.189032');
INSERT INTO `tb_region` VALUES (2882, 2816, '阿里', '阿里地区', '中国,西藏自治区,阿里地区', 2, 'ngari', '0897', '859000', 'A', '80.105498', '32.503187');
INSERT INTO `tb_region` VALUES (2883, 2882, '普兰', '普兰县', '中国,西藏自治区,阿里地区,普兰县', 3, 'pulan', '0897', '859500', 'P', '81.177', '30.30002');
INSERT INTO `tb_region` VALUES (2884, 2882, '札达', '札达县', '中国,西藏自治区,阿里地区,札达县', 3, 'zhada', '0897', '859600', 'Z', '79.80255', '31.48345');
INSERT INTO `tb_region` VALUES (2885, 2882, '噶尔', '噶尔县', '中国,西藏自治区,阿里地区,噶尔县', 3, 'gaer', '0897', '859400', 'G', '80.09579', '32.50024');
INSERT INTO `tb_region` VALUES (2886, 2882, '日土', '日土县', '中国,西藏自治区,阿里地区,日土县', 3, 'ritu', '0897', '859700', 'R', '79.7131', '33.38741');
INSERT INTO `tb_region` VALUES (2887, 2882, '革吉', '革吉县', '中国,西藏自治区,阿里地区,革吉县', 3, 'geji', '0897', '859100', 'G', '81.151', '32.3964');
INSERT INTO `tb_region` VALUES (2888, 2882, '改则', '改则县', '中国,西藏自治区,阿里地区,改则县', 3, 'gaize', '0897', '859200', 'G', '84.06295', '32.30446');
INSERT INTO `tb_region` VALUES (2889, 2882, '措勤', '措勤县', '中国,西藏自治区,阿里地区,措勤县', 3, 'cuoqin', '0897', '859300', 'C', '85.16616', '31.02095');
INSERT INTO `tb_region` VALUES (2890, 2816, '林芝', '林芝地区', '中国,西藏自治区,林芝地区', 2, 'nyingchi', '0894', '850400', 'L', '94.362348', '29.654693');
INSERT INTO `tb_region` VALUES (2891, 2890, '林芝', '林芝县', '中国,西藏自治区,林芝地区,林芝县', 3, 'linzhi', '0894', '850400', 'L', '94.48391', '29.57562');
INSERT INTO `tb_region` VALUES (2892, 2890, '工布江达', '工布江达县', '中国,西藏自治区,林芝地区,工布江达县', 3, 'gongbujiangda', '0894', '850300', 'G', '93.2452', '29.88576');
INSERT INTO `tb_region` VALUES (2893, 2890, '米林', '米林县', '中国,西藏自治区,林芝地区,米林县', 3, 'milin', '0894', '850500', 'M', '94.21316', '29.21535');
INSERT INTO `tb_region` VALUES (2894, 2890, '墨脱', '墨脱县', '中国,西藏自治区,林芝地区,墨脱县', 3, 'motuo', '0894', '855300', 'M', '95.3316', '29.32698');
INSERT INTO `tb_region` VALUES (2895, 2890, '波密', '波密县', '中国,西藏自治区,林芝地区,波密县', 3, 'bomi', '0894', '855200', 'B', '95.77096', '29.85907');
INSERT INTO `tb_region` VALUES (2896, 2890, '察隅', '察隅县', '中国,西藏自治区,林芝地区,察隅县', 3, 'chayu', '0894', '855100', 'C', '97.46679', '28.6618');
INSERT INTO `tb_region` VALUES (2897, 2890, '朗县', '朗县', '中国,西藏自治区,林芝地区,朗县', 3, 'langxian', '0894', '856500', 'L', '93.0754', '29.04549');
INSERT INTO `tb_region` VALUES (2898, 0, '陕西', '陕西省', '中国,陕西省', 1, 'shaanxi', '', '', 'S', '108.948024', '34.263161');
INSERT INTO `tb_region` VALUES (2899, 2898, '西安', '西安市', '中国,陕西省,西安市', 2, 'xi\'an', '029', '710003', 'X', '108.948024', '34.263161');
INSERT INTO `tb_region` VALUES (2900, 2899, '新城', '新城区', '中国,陕西省,西安市,新城区', 3, 'xincheng', '029', '710004', 'X', '108.9608', '34.26641');
INSERT INTO `tb_region` VALUES (2901, 2899, '碑林', '碑林区', '中国,陕西省,西安市,碑林区', 3, 'beilin', '029', '710001', 'B', '108.93426', '34.2304');
INSERT INTO `tb_region` VALUES (2902, 2899, '莲湖', '莲湖区', '中国,陕西省,西安市,莲湖区', 3, 'lianhu', '029', '710003', 'L', '108.9401', '34.26709');
INSERT INTO `tb_region` VALUES (2903, 2899, '灞桥', '灞桥区', '中国,陕西省,西安市,灞桥区', 3, 'baqiao', '029', '710038', 'B', '109.06451', '34.27264');
INSERT INTO `tb_region` VALUES (2904, 2899, '未央', '未央区', '中国,陕西省,西安市,未央区', 3, 'weiyang', '029', '710014', 'W', '108.94683', '34.29296');
INSERT INTO `tb_region` VALUES (2905, 2899, '雁塔', '雁塔区', '中国,陕西省,西安市,雁塔区', 3, 'yanta', '029', '710061', 'Y', '108.94866', '34.22245');
INSERT INTO `tb_region` VALUES (2906, 2899, '阎良', '阎良区', '中国,陕西省,西安市,阎良区', 3, 'yanliang', '029', '710087', 'Y', '109.22616', '34.66221');
INSERT INTO `tb_region` VALUES (2907, 2899, '临潼', '临潼区', '中国,陕西省,西安市,临潼区', 3, 'lintong', '029', '710600', 'L', '109.21417', '34.36665');
INSERT INTO `tb_region` VALUES (2908, 2899, '长安', '长安区', '中国,陕西省,西安市,长安区', 3, 'chang\'an', '029', '710100', 'C', '108.94586', '34.15559');
INSERT INTO `tb_region` VALUES (2909, 2899, '蓝田', '蓝田县', '中国,陕西省,西安市,蓝田县', 3, 'lantian', '029', '710500', 'L', '109.32339', '34.15128');
INSERT INTO `tb_region` VALUES (2910, 2899, '周至', '周至县', '中国,陕西省,西安市,周至县', 3, 'zhouzhi', '029', '710400', 'Z', '108.22207', '34.16337');
INSERT INTO `tb_region` VALUES (2911, 2899, '户县', '户县', '中国,陕西省,西安市,户县', 3, 'huxian', '029', '710300', 'H', '108.60513', '34.10856');
INSERT INTO `tb_region` VALUES (2912, 2899, '高陵', '高陵区', '中国,陕西省,西安市,高陵区', 3, 'gaoling', '029', '710200', 'G', '109.08816', '34.53483');
INSERT INTO `tb_region` VALUES (2913, 2898, '铜川', '铜川市', '中国,陕西省,铜川市', 2, 'tongchuan', '0919', '727100', 'T', '108.963122', '34.90892');
INSERT INTO `tb_region` VALUES (2914, 2913, '王益', '王益区', '中国,陕西省,铜川市,王益区', 3, 'wangyi', '0919', '727000', 'W', '109.07564', '35.06896');
INSERT INTO `tb_region` VALUES (2915, 2913, '印台', '印台区', '中国,陕西省,铜川市,印台区', 3, 'yintai', '0919', '727007', 'Y', '109.10208', '35.1169');
INSERT INTO `tb_region` VALUES (2916, 2913, '耀州', '耀州区', '中国,陕西省,铜川市,耀州区', 3, 'yaozhou', '0919', '727100', 'Y', '108.98556', '34.91308');
INSERT INTO `tb_region` VALUES (2917, 2913, '宜君', '宜君县', '中国,陕西省,铜川市,宜君县', 3, 'yijun', '0919', '727200', 'Y', '109.11813', '35.40108');
INSERT INTO `tb_region` VALUES (2918, 2898, '宝鸡', '宝鸡市', '中国,陕西省,宝鸡市', 2, 'baoji', '0917', '721000', 'B', '107.14487', '34.369315');
INSERT INTO `tb_region` VALUES (2919, 2918, '渭滨', '渭滨区', '中国,陕西省,宝鸡市,渭滨区', 3, 'weibin', '0917', '721000', 'W', '107.14991', '34.37116');
INSERT INTO `tb_region` VALUES (2920, 2918, '金台', '金台区', '中国,陕西省,宝鸡市,金台区', 3, 'jintai', '0917', '721000', 'J', '107.14691', '34.37612');
INSERT INTO `tb_region` VALUES (2921, 2918, '陈仓', '陈仓区', '中国,陕西省,宝鸡市,陈仓区', 3, 'chencang', '0917', '721300', 'C', '107.38742', '34.35451');
INSERT INTO `tb_region` VALUES (2922, 2918, '凤翔', '凤翔县', '中国,陕西省,宝鸡市,凤翔县', 3, 'fengxiang', '0917', '721400', 'F', '107.39645', '34.52321');
INSERT INTO `tb_region` VALUES (2923, 2918, '岐山', '岐山县', '中国,陕西省,宝鸡市,岐山县', 3, 'qishan', '0917', '722400', 'Q', '107.62173', '34.44378');
INSERT INTO `tb_region` VALUES (2924, 2918, '扶风', '扶风县', '中国,陕西省,宝鸡市,扶风县', 3, 'fufeng', '0917', '722200', 'F', '107.90017', '34.37524');
INSERT INTO `tb_region` VALUES (2925, 2918, '眉县', '眉县', '中国,陕西省,宝鸡市,眉县', 3, 'meixian', '0917', '722300', 'M', '107.75079', '34.27569');
INSERT INTO `tb_region` VALUES (2926, 2918, '陇县', '陇县', '中国,陕西省,宝鸡市,陇县', 3, 'longxian', '0917', '721200', 'L', '106.85946', '34.89404');
INSERT INTO `tb_region` VALUES (2927, 2918, '千阳', '千阳县', '中国,陕西省,宝鸡市,千阳县', 3, 'qianyang', '0917', '721100', 'Q', '107.13043', '34.64219');
INSERT INTO `tb_region` VALUES (2928, 2918, '麟游', '麟游县', '中国,陕西省,宝鸡市,麟游县', 3, 'linyou', '0917', '721500', 'L', '107.79623', '34.67844');
INSERT INTO `tb_region` VALUES (2929, 2918, '凤县', '凤县', '中国,陕西省,宝鸡市,凤县', 3, 'fengxian', '0917', '721700', 'F', '106.52356', '33.91172');
INSERT INTO `tb_region` VALUES (2930, 2918, '太白', '太白县', '中国,陕西省,宝鸡市,太白县', 3, 'taibai', '0917', '721600', 'T', '107.31646', '34.06207');
INSERT INTO `tb_region` VALUES (2931, 2898, '咸阳', '咸阳市', '中国,陕西省,咸阳市', 2, 'xianyang', '029', '712000', 'X', '108.705117', '34.333439');
INSERT INTO `tb_region` VALUES (2932, 2931, '秦都', '秦都区', '中国,陕西省,咸阳市,秦都区', 3, 'qindu', '029', '712000', 'Q', '108.71493', '34.33804');
INSERT INTO `tb_region` VALUES (2933, 2931, '杨陵', '杨陵区', '中国,陕西省,咸阳市,杨陵区', 3, 'yangling', '029', '712100', 'Y', '108.083481', '34.270434');
INSERT INTO `tb_region` VALUES (2934, 2931, '渭城', '渭城区', '中国,陕西省,咸阳市,渭城区', 3, 'weicheng', '029', '712000', 'W', '108.72227', '34.33198');
INSERT INTO `tb_region` VALUES (2935, 2931, '三原', '三原县', '中国,陕西省,咸阳市,三原县', 3, 'sanyuan', '029', '713800', 'S', '108.93194', '34.61556');
INSERT INTO `tb_region` VALUES (2936, 2931, '泾阳', '泾阳县', '中国,陕西省,咸阳市,泾阳县', 3, 'jingyang', '029', '713700', 'J', '108.84259', '34.52705');
INSERT INTO `tb_region` VALUES (2937, 2931, '乾县', '乾县', '中国,陕西省,咸阳市,乾县', 3, 'qianxian', '029', '713300', 'Q', '108.24231', '34.52946');
INSERT INTO `tb_region` VALUES (2938, 2931, '礼泉', '礼泉县', '中国,陕西省,咸阳市,礼泉县', 3, 'liquan', '029', '713200', 'L', '108.4263', '34.48455');
INSERT INTO `tb_region` VALUES (2939, 2931, '永寿', '永寿县', '中国,陕西省,咸阳市,永寿县', 3, 'yongshou', '029', '713400', 'Y', '108.14474', '34.69081');
INSERT INTO `tb_region` VALUES (2940, 2931, '彬县', '彬县', '中国,陕西省,咸阳市,彬县', 3, 'binxian', '029', '713500', 'B', '108.08468', '35.0342');
INSERT INTO `tb_region` VALUES (2941, 2931, '长武', '长武县', '中国,陕西省,咸阳市,长武县', 3, 'changwu', '029', '713600', 'C', '107.7951', '35.2067');
INSERT INTO `tb_region` VALUES (2942, 2931, '旬邑', '旬邑县', '中国,陕西省,咸阳市,旬邑县', 3, 'xunyi', '029', '711300', 'X', '108.3341', '35.11338');
INSERT INTO `tb_region` VALUES (2943, 2931, '淳化', '淳化县', '中国,陕西省,咸阳市,淳化县', 3, 'chunhua', '029', '711200', 'C', '108.58026', '34.79886');
INSERT INTO `tb_region` VALUES (2944, 2931, '武功', '武功县', '中国,陕西省,咸阳市,武功县', 3, 'wugong', '029', '712200', 'W', '108.20434', '34.26003');
INSERT INTO `tb_region` VALUES (2945, 2931, '兴平', '兴平市', '中国,陕西省,咸阳市,兴平市', 3, 'xingping', '029', '713100', 'X', '108.49057', '34.29785');
INSERT INTO `tb_region` VALUES (2946, 2898, '渭南', '渭南市', '中国,陕西省,渭南市', 2, 'weinan', '0913', '714000', 'W', '109.502882', '34.499381');
INSERT INTO `tb_region` VALUES (2947, 2946, '临渭', '临渭区', '中国,陕西省,渭南市,临渭区', 3, 'linwei', '0913', '714000', 'L', '109.49296', '34.49822');
INSERT INTO `tb_region` VALUES (2948, 2946, '华县', '华县', '中国,陕西省,渭南市,华县', 3, 'huaxian', '0913', '714100', 'H', '109.77185', '34.51255');
INSERT INTO `tb_region` VALUES (2949, 2946, '潼关', '潼关县', '中国,陕西省,渭南市,潼关县', 3, 'tongguan', '0913', '714300', 'T', '110.24362', '34.54284');
INSERT INTO `tb_region` VALUES (2950, 2946, '大荔', '大荔县', '中国,陕西省,渭南市,大荔县', 3, 'dali', '0913', '715100', 'D', '109.94216', '34.79565');
INSERT INTO `tb_region` VALUES (2951, 2946, '合阳', '合阳县', '中国,陕西省,渭南市,合阳县', 3, 'heyang', '0913', '715300', 'H', '110.14862', '35.23805');
INSERT INTO `tb_region` VALUES (2952, 2946, '澄城', '澄城县', '中国,陕西省,渭南市,澄城县', 3, 'chengcheng', '0913', '715200', 'C', '109.93444', '35.18396');
INSERT INTO `tb_region` VALUES (2953, 2946, '蒲城', '蒲城县', '中国,陕西省,渭南市,蒲城县', 3, 'pucheng', '0913', '715500', 'P', '109.5903', '34.9568');
INSERT INTO `tb_region` VALUES (2954, 2946, '白水', '白水县', '中国,陕西省,渭南市,白水县', 3, 'baishui', '0913', '715600', 'B', '109.59286', '35.17863');
INSERT INTO `tb_region` VALUES (2955, 2946, '富平', '富平县', '中国,陕西省,渭南市,富平县', 3, 'fuping', '0913', '711700', 'F', '109.1802', '34.75109');
INSERT INTO `tb_region` VALUES (2956, 2946, '韩城', '韩城市', '中国,陕西省,渭南市,韩城市', 3, 'hancheng', '0913', '715400', 'H', '110.44238', '35.47926');
INSERT INTO `tb_region` VALUES (2957, 2946, '华阴', '华阴市', '中国,陕西省,渭南市,华阴市', 3, 'huayin', '0913', '714200', 'H', '110.08752', '34.56608');
INSERT INTO `tb_region` VALUES (2958, 2898, '延安', '延安市', '中国,陕西省,延安市', 2, 'yan\'an', '0911', '716000', 'Y', '109.49081', '36.596537');
INSERT INTO `tb_region` VALUES (2959, 2958, '宝塔', '宝塔区', '中国,陕西省,延安市,宝塔区', 3, 'baota', '0911', '716000', 'B', '109.49336', '36.59154');
INSERT INTO `tb_region` VALUES (2960, 2958, '延长', '延长县', '中国,陕西省,延安市,延长县', 3, 'yanchang', '0911', '717100', 'Y', '110.01083', '36.57904');
INSERT INTO `tb_region` VALUES (2961, 2958, '延川', '延川县', '中国,陕西省,延安市,延川县', 3, 'yanchuan', '0911', '717200', 'Y', '110.19415', '36.87817');
INSERT INTO `tb_region` VALUES (2962, 2958, '子长', '子长县', '中国,陕西省,延安市,子长县', 3, 'zichang', '0911', '717300', 'Z', '109.67532', '37.14253');
INSERT INTO `tb_region` VALUES (2963, 2958, '安塞', '安塞县', '中国,陕西省,延安市,安塞县', 3, 'ansai', '0911', '717400', 'A', '109.32708', '36.86507');
INSERT INTO `tb_region` VALUES (2964, 2958, '志丹', '志丹县', '中国,陕西省,延安市,志丹县', 3, 'zhidan', '0911', '717500', 'Z', '108.76815', '36.82177');
INSERT INTO `tb_region` VALUES (2965, 2958, '吴起', '吴起县', '中国,陕西省,延安市,吴起县', 3, 'wuqi', '0911', '717600', 'W', '108.17611', '36.92785');
INSERT INTO `tb_region` VALUES (2966, 2958, '甘泉', '甘泉县', '中国,陕西省,延安市,甘泉县', 3, 'ganquan', '0911', '716100', 'G', '109.35012', '36.27754');
INSERT INTO `tb_region` VALUES (2967, 2958, '富县', '富县', '中国,陕西省,延安市,富县', 3, 'fuxian', '0911', '727500', 'F', '109.37927', '35.98803');
INSERT INTO `tb_region` VALUES (2968, 2958, '洛川', '洛川县', '中国,陕西省,延安市,洛川县', 3, 'luochuan', '0911', '727400', 'L', '109.43286', '35.76076');
INSERT INTO `tb_region` VALUES (2969, 2958, '宜川', '宜川县', '中国,陕西省,延安市,宜川县', 3, 'yichuan', '0911', '716200', 'Y', '110.17196', '36.04732');
INSERT INTO `tb_region` VALUES (2970, 2958, '黄龙', '黄龙县', '中国,陕西省,延安市,黄龙县', 3, 'huanglong', '0911', '715700', 'H', '109.84259', '35.58349');
INSERT INTO `tb_region` VALUES (2971, 2958, '黄陵', '黄陵县', '中国,陕西省,延安市,黄陵县', 3, 'huangling', '0911', '727300', 'H', '109.26333', '35.58357');
INSERT INTO `tb_region` VALUES (2972, 2898, '汉中', '汉中市', '中国,陕西省,汉中市', 2, 'hanzhong', '0916', '723000', 'H', '107.028621', '33.077668');
INSERT INTO `tb_region` VALUES (2973, 2972, '汉台', '汉台区', '中国,陕西省,汉中市,汉台区', 3, 'hantai', '0916', '723000', 'H', '107.03187', '33.06774');
INSERT INTO `tb_region` VALUES (2974, 2972, '南郑', '南郑县', '中国,陕西省,汉中市,南郑县', 3, 'nanzheng', '0916', '723100', 'N', '106.94024', '33.00299');
INSERT INTO `tb_region` VALUES (2975, 2972, '城固', '城固县', '中国,陕西省,汉中市,城固县', 3, 'chenggu', '0916', '723200', 'C', '107.33367', '33.15661');
INSERT INTO `tb_region` VALUES (2976, 2972, '洋县', '洋县', '中国,陕西省,汉中市,洋县', 3, 'yangxian', '0916', '723300', 'Y', '107.54672', '33.22102');
INSERT INTO `tb_region` VALUES (2977, 2972, '西乡', '西乡县', '中国,陕西省,汉中市,西乡县', 3, 'xixiang', '0916', '723500', 'X', '107.76867', '32.98411');
INSERT INTO `tb_region` VALUES (2978, 2972, '勉县', '勉县', '中国,陕西省,汉中市,勉县', 3, 'mianxian', '0916', '724200', 'M', '106.67584', '33.15273');
INSERT INTO `tb_region` VALUES (2979, 2972, '宁强', '宁强县', '中国,陕西省,汉中市,宁强县', 3, 'ningqiang', '0916', '724400', 'N', '106.25958', '32.82881');
INSERT INTO `tb_region` VALUES (2980, 2972, '略阳', '略阳县', '中国,陕西省,汉中市,略阳县', 3, 'lueyang', '0916', '724300', 'L', '106.15399', '33.33009');
INSERT INTO `tb_region` VALUES (2981, 2972, '镇巴', '镇巴县', '中国,陕西省,汉中市,镇巴县', 3, 'zhenba', '0916', '723600', 'Z', '107.89648', '32.53487');
INSERT INTO `tb_region` VALUES (2982, 2972, '留坝', '留坝县', '中国,陕西省,汉中市,留坝县', 3, 'liuba', '0916', '724100', 'L', '106.92233', '33.61606');
INSERT INTO `tb_region` VALUES (2983, 2972, '佛坪', '佛坪县', '中国,陕西省,汉中市,佛坪县', 3, 'foping', '0916', '723400', 'F', '107.98974', '33.52496');
INSERT INTO `tb_region` VALUES (2984, 2898, '榆林', '榆林市', '中国,陕西省,榆林市', 2, 'yulin', '0912', '719000', 'Y', '109.741193', '38.290162');
INSERT INTO `tb_region` VALUES (2985, 2984, '榆阳', '榆阳区', '中国,陕西省,榆林市,榆阳区', 3, 'yuyang', '0912', '719000', 'Y', '109.73473', '38.27843');
INSERT INTO `tb_region` VALUES (2986, 2984, '神木', '神木县', '中国,陕西省,榆林市,神木县', 3, 'shenmu', '0912', '719300', 'S', '110.4989', '38.84234');
INSERT INTO `tb_region` VALUES (2987, 2984, '府谷', '府谷县', '中国,陕西省,榆林市,府谷县', 3, 'fugu', '0912', '719400', 'F', '111.06723', '39.02805');
INSERT INTO `tb_region` VALUES (2988, 2984, '横山', '横山县', '中国,陕西省,榆林市,横山县', 3, 'hengshan', '0912', '719100', 'H', '109.29568', '37.958');
INSERT INTO `tb_region` VALUES (2989, 2984, '靖边', '靖边县', '中国,陕西省,榆林市,靖边县', 3, 'jingbian', '0912', '718500', 'J', '108.79412', '37.59938');
INSERT INTO `tb_region` VALUES (2990, 2984, '定边', '定边县', '中国,陕西省,榆林市,定边县', 3, 'dingbian', '0912', '718600', 'D', '107.59793', '37.59037');
INSERT INTO `tb_region` VALUES (2991, 2984, '绥德', '绥德县', '中国,陕西省,榆林市,绥德县', 3, 'suide', '0912', '718000', 'S', '110.26126', '37.49778');
INSERT INTO `tb_region` VALUES (2992, 2984, '米脂', '米脂县', '中国,陕西省,榆林市,米脂县', 3, 'mizhi', '0912', '718100', 'M', '110.18417', '37.75529');
INSERT INTO `tb_region` VALUES (2993, 2984, '佳县', '佳县', '中国,陕西省,榆林市,佳县', 3, 'jiaxian', '0912', '719200', 'J', '110.49362', '38.02248');
INSERT INTO `tb_region` VALUES (2994, 2984, '吴堡', '吴堡县', '中国,陕西省,榆林市,吴堡县', 3, 'wubu', '0912', '718200', 'W', '110.74533', '37.45709');
INSERT INTO `tb_region` VALUES (2995, 2984, '清涧', '清涧县', '中国,陕西省,榆林市,清涧县', 3, 'qingjian', '0912', '718300', 'Q', '110.12173', '37.08854');
INSERT INTO `tb_region` VALUES (2996, 2984, '子洲', '子洲县', '中国,陕西省,榆林市,子洲县', 3, 'zizhou', '0912', '718400', 'Z', '110.03488', '37.61238');
INSERT INTO `tb_region` VALUES (2997, 2898, '安康', '安康市', '中国,陕西省,安康市', 2, 'ankang', '0915', '725000', 'A', '109.029273', '32.6903');
INSERT INTO `tb_region` VALUES (2998, 2997, '汉滨', '汉滨区', '中国,陕西省,安康市,汉滨区', 3, 'hanbin', '0915', '725000', 'H', '109.02683', '32.69517');
INSERT INTO `tb_region` VALUES (2999, 2997, '汉阴', '汉阴县', '中国,陕西省,安康市,汉阴县', 3, 'hanyin', '0915', '725100', 'H', '108.51098', '32.89129');
INSERT INTO `tb_region` VALUES (3000, 2997, '石泉', '石泉县', '中国,陕西省,安康市,石泉县', 3, 'shiquan', '0915', '725200', 'S', '108.24755', '33.03971');
INSERT INTO `tb_region` VALUES (3001, 2997, '宁陕', '宁陕县', '中国,陕西省,安康市,宁陕县', 3, 'ningshan', '0915', '711600', 'N', '108.31515', '33.31726');
INSERT INTO `tb_region` VALUES (3002, 2997, '紫阳', '紫阳县', '中国,陕西省,安康市,紫阳县', 3, 'ziyang', '0915', '725300', 'Z', '108.5368', '32.52115');
INSERT INTO `tb_region` VALUES (3003, 2997, '岚皋', '岚皋县', '中国,陕西省,安康市,岚皋县', 3, 'langao', '0915', '725400', 'L', '108.90289', '32.30794');
INSERT INTO `tb_region` VALUES (3004, 2997, '平利', '平利县', '中国,陕西省,安康市,平利县', 3, 'pingli', '0915', '725500', 'P', '109.35775', '32.39111');
INSERT INTO `tb_region` VALUES (3005, 2997, '镇坪', '镇坪县', '中国,陕西省,安康市,镇坪县', 3, 'zhenping', '0915', '725600', 'Z', '109.52456', '31.8833');
INSERT INTO `tb_region` VALUES (3006, 2997, '旬阳', '旬阳县', '中国,陕西省,安康市,旬阳县', 3, 'xunyang', '0915', '725700', 'X', '109.3619', '32.83207');
INSERT INTO `tb_region` VALUES (3007, 2997, '白河', '白河县', '中国,陕西省,安康市,白河县', 3, 'baihe', '0915', '725800', 'B', '110.11315', '32.80955');
INSERT INTO `tb_region` VALUES (3008, 2898, '商洛', '商洛市', '中国,陕西省,商洛市', 2, 'shangluo', '0914', '726000', 'S', '109.939776', '33.868319');
INSERT INTO `tb_region` VALUES (3009, 3008, '商州', '商州区', '中国,陕西省,商洛市,商州区', 3, 'shangzhou', '0914', '726000', 'S', '109.94126', '33.8627');
INSERT INTO `tb_region` VALUES (3010, 3008, '洛南', '洛南县', '中国,陕西省,商洛市,洛南县', 3, 'luonan', '0914', '726100', 'L', '110.14645', '34.08994');
INSERT INTO `tb_region` VALUES (3011, 3008, '丹凤', '丹凤县', '中国,陕西省,商洛市,丹凤县', 3, 'danfeng', '0914', '726200', 'D', '110.33486', '33.69468');
INSERT INTO `tb_region` VALUES (3012, 3008, '商南', '商南县', '中国,陕西省,商洛市,商南县', 3, 'shangnan', '0914', '726300', 'S', '110.88375', '33.52581');
INSERT INTO `tb_region` VALUES (3013, 3008, '山阳', '山阳县', '中国,陕西省,商洛市,山阳县', 3, 'shanyang', '0914', '726400', 'S', '109.88784', '33.52931');
INSERT INTO `tb_region` VALUES (3014, 3008, '镇安', '镇安县', '中国,陕西省,商洛市,镇安县', 3, 'zhen\'an', '0914', '711500', 'Z', '109.15374', '33.42366');
INSERT INTO `tb_region` VALUES (3015, 3008, '柞水', '柞水县', '中国,陕西省,商洛市,柞水县', 3, 'zhashui', '0914', '711400', 'Z', '109.11105', '33.6831');
INSERT INTO `tb_region` VALUES (3016, 2898, '西咸', '西咸新区', '中国,陕西省,西咸新区', 2, 'xixian', '029', '712000', 'X', '108.810654', '34.307144');
INSERT INTO `tb_region` VALUES (3017, 3016, '空港', '空港新城', '中国,陕西省,西咸新区,空港新城', 3, 'konggang', '0374', '461000', 'K', '108.760529', '34.440894');
INSERT INTO `tb_region` VALUES (3018, 3016, '沣东', '沣东新城', '中国,陕西省,西咸新区,沣东新城', 3, 'fengdong', '029', '710000', 'F', '108.82988', '34.267431');
INSERT INTO `tb_region` VALUES (3019, 3016, '秦汉', '秦汉新城', '中国,陕西省,西咸新区,秦汉新城', 3, 'qinhan', '029', '712000', 'Q', '108.83812', '34.386513');
INSERT INTO `tb_region` VALUES (3020, 3016, '沣西', '沣西新城', '中国,陕西省,西咸新区,沣西新城', 3, 'fengxi', '029', '710000', 'F', '108.71215', '34.190453');
INSERT INTO `tb_region` VALUES (3021, 3016, '泾河', '泾河新城', '中国,陕西省,西咸新区,泾河新城', 3, 'jinghe', '029', '713700', 'J', '109.049603', '34.460587');
INSERT INTO `tb_region` VALUES (3022, 0, '甘肃', '甘肃省', '中国,甘肃省', 1, 'gansu', '', '', 'G', '103.823557', '36.058039');
INSERT INTO `tb_region` VALUES (3023, 3022, '兰州', '兰州市', '中国,甘肃省,兰州市', 2, 'lanzhou', '0931', '730030', 'L', '103.823557', '36.058039');
INSERT INTO `tb_region` VALUES (3024, 3023, '城关', '城关区', '中国,甘肃省,兰州市,城关区', 3, 'chengguan', '0931', '730030', 'C', '103.8252', '36.05725');
INSERT INTO `tb_region` VALUES (3025, 3023, '七里河', '七里河区', '中国,甘肃省,兰州市,七里河区', 3, 'qilihe', '0931', '730050', 'Q', '103.78564', '36.06585');
INSERT INTO `tb_region` VALUES (3026, 3023, '西固', '西固区', '中国,甘肃省,兰州市,西固区', 3, 'xigu', '0931', '730060', 'X', '103.62811', '36.08858');
INSERT INTO `tb_region` VALUES (3027, 3023, '安宁', '安宁区', '中国,甘肃省,兰州市,安宁区', 3, 'anning', '0931', '730070', 'A', '103.7189', '36.10384');
INSERT INTO `tb_region` VALUES (3028, 3023, '红古', '红古区', '中国,甘肃省,兰州市,红古区', 3, 'honggu', '0931', '730084', 'H', '102.85955', '36.34537');
INSERT INTO `tb_region` VALUES (3029, 3023, '永登', '永登县', '中国,甘肃省,兰州市,永登县', 3, 'yongdeng', '0931', '730300', 'Y', '103.26055', '36.73522');
INSERT INTO `tb_region` VALUES (3030, 3023, '皋兰', '皋兰县', '中国,甘肃省,兰州市,皋兰县', 3, 'gaolan', '0931', '730200', 'G', '103.94506', '36.33215');
INSERT INTO `tb_region` VALUES (3031, 3023, '榆中', '榆中县', '中国,甘肃省,兰州市,榆中县', 3, 'yuzhong', '0931', '730100', 'Y', '104.1145', '35.84415');
INSERT INTO `tb_region` VALUES (3032, 3022, '嘉峪关', '嘉峪关市', '中国,甘肃省,嘉峪关市', 2, 'jiayuguan', '0937', '735100', 'J', '98.277304', '39.786529');
INSERT INTO `tb_region` VALUES (3033, 3032, '雄关', '雄关区', '中国,甘肃省,嘉峪关市,雄关区', 3, 'xiongguan', '0937', '735100', 'X', '98.277398', '39.77925');
INSERT INTO `tb_region` VALUES (3034, 3032, '长城', '长城区', '中国,甘肃省,嘉峪关市,长城区', 3, 'changcheng', '0937', '735106', 'C', '98.273523', '39.787431');
INSERT INTO `tb_region` VALUES (3035, 3032, '镜铁', '镜铁区', '中国,甘肃省,嘉峪关市,镜铁区', 3, 'jingtie', '0937', '735100', 'J', '98.277304', '39.786529');
INSERT INTO `tb_region` VALUES (3036, 3022, '金昌', '金昌市', '中国,甘肃省,金昌市', 2, 'jinchang', '0935', '737100', 'J', '102.187888', '38.514238');
INSERT INTO `tb_region` VALUES (3037, 3036, '金川', '金川区', '中国,甘肃省,金昌市,金川区', 3, 'jinchuan', '0935', '737100', 'J', '102.19376', '38.52101');
INSERT INTO `tb_region` VALUES (3038, 3036, '永昌', '永昌县', '中国,甘肃省,金昌市,永昌县', 3, 'yongchang', '0935', '737200', 'Y', '101.97222', '38.24711');
INSERT INTO `tb_region` VALUES (3039, 3022, '白银', '白银市', '中国,甘肃省,白银市', 2, 'baiyin', '0943', '730900', 'B', '104.173606', '36.54568');
INSERT INTO `tb_region` VALUES (3040, 3039, '白银', '白银区', '中国,甘肃省,白银市,白银区', 3, 'baiyin', '0943', '730900', 'B', '104.17355', '36.54411');
INSERT INTO `tb_region` VALUES (3041, 3039, '平川', '平川区', '中国,甘肃省,白银市,平川区', 3, 'pingchuan', '0943', '730913', 'P', '104.82498', '36.7277');
INSERT INTO `tb_region` VALUES (3042, 3039, '靖远', '靖远县', '中国,甘肃省,白银市,靖远县', 3, 'jingyuan', '0943', '730600', 'J', '104.68325', '36.56602');
INSERT INTO `tb_region` VALUES (3043, 3039, '会宁', '会宁县', '中国,甘肃省,白银市,会宁县', 3, 'huining', '0943', '730700', 'H', '105.05297', '35.69626');
INSERT INTO `tb_region` VALUES (3044, 3039, '景泰', '景泰县', '中国,甘肃省,白银市,景泰县', 3, 'jingtai', '0943', '730400', 'J', '104.06295', '37.18359');
INSERT INTO `tb_region` VALUES (3045, 3022, '天水', '天水市', '中国,甘肃省,天水市', 2, 'tianshui', '0938', '741000', 'T', '105.724998', '34.578529');
INSERT INTO `tb_region` VALUES (3046, 3045, '秦州', '秦州区', '中国,甘肃省,天水市,秦州区', 3, 'qinzhou', '0938', '741000', 'Q', '105.72421', '34.58089');
INSERT INTO `tb_region` VALUES (3047, 3045, '麦积', '麦积区', '中国,甘肃省,天水市,麦积区', 3, 'maiji', '0938', '741020', 'M', '105.89013', '34.57069');
INSERT INTO `tb_region` VALUES (3048, 3045, '清水', '清水县', '中国,甘肃省,天水市,清水县', 3, 'qingshui', '0938', '741400', 'Q', '106.13671', '34.75032');
INSERT INTO `tb_region` VALUES (3049, 3045, '秦安', '秦安县', '中国,甘肃省,天水市,秦安县', 3, 'qin\'an', '0938', '741600', 'Q', '105.66955', '34.85894');
INSERT INTO `tb_region` VALUES (3050, 3045, '甘谷', '甘谷县', '中国,甘肃省,天水市,甘谷县', 3, 'gangu', '0938', '741200', 'G', '105.33291', '34.73665');
INSERT INTO `tb_region` VALUES (3051, 3045, '武山', '武山县', '中国,甘肃省,天水市,武山县', 3, 'wushan', '0938', '741300', 'W', '104.88382', '34.72123');
INSERT INTO `tb_region` VALUES (3052, 3045, '张家川', '张家川回族自治县', '中国,甘肃省,天水市,张家川回族自治县', 3, 'zhangjiachuan', '0938', '741500', 'Z', '106.21582', '34.99582');
INSERT INTO `tb_region` VALUES (3053, 3022, '武威', '武威市', '中国,甘肃省,武威市', 2, 'wuwei', '0935', '733000', 'W', '102.634697', '37.929996');
INSERT INTO `tb_region` VALUES (3054, 3053, '凉州', '凉州区', '中国,甘肃省,武威市,凉州区', 3, 'liangzhou', '0935', '733000', 'L', '102.64203', '37.92832');
INSERT INTO `tb_region` VALUES (3055, 3053, '民勤', '民勤县', '中国,甘肃省,武威市,民勤县', 3, 'minqin', '0935', '733300', 'M', '103.09011', '38.62487');
INSERT INTO `tb_region` VALUES (3056, 3053, '古浪', '古浪县', '中国,甘肃省,武威市,古浪县', 3, 'gulang', '0935', '733100', 'G', '102.89154', '37.46508');
INSERT INTO `tb_region` VALUES (3057, 3053, '天祝', '天祝藏族自治县', '中国,甘肃省,武威市,天祝藏族自治县', 3, 'tianzhu', '0935', '733200', 'T', '103.1361', '36.97715');
INSERT INTO `tb_region` VALUES (3058, 3022, '张掖', '张掖市', '中国,甘肃省,张掖市', 2, 'zhangye', '0936', '734000', 'Z', '100.455472', '38.932897');
INSERT INTO `tb_region` VALUES (3059, 3058, '甘州', '甘州区', '中国,甘肃省,张掖市,甘州区', 3, 'ganzhou', '0936', '734000', 'G', '100.4527', '38.92947');
INSERT INTO `tb_region` VALUES (3060, 3058, '肃南', '肃南裕固族自治县', '中国,甘肃省,张掖市,肃南裕固族自治县', 3, 'sunan', '0936', '734400', 'S', '99.61407', '38.83776');
INSERT INTO `tb_region` VALUES (3061, 3058, '民乐', '民乐县', '中国,甘肃省,张掖市,民乐县', 3, 'minle', '0936', '734500', 'M', '100.81091', '38.43479');
INSERT INTO `tb_region` VALUES (3062, 3058, '临泽', '临泽县', '中国,甘肃省,张掖市,临泽县', 3, 'linze', '0936', '734200', 'L', '100.16445', '39.15252');
INSERT INTO `tb_region` VALUES (3063, 3058, '高台', '高台县', '中国,甘肃省,张掖市,高台县', 3, 'gaotai', '0936', '734300', 'G', '99.81918', '39.37829');
INSERT INTO `tb_region` VALUES (3064, 3058, '山丹', '山丹县', '中国,甘肃省,张掖市,山丹县', 3, 'shandan', '0936', '734100', 'S', '101.09359', '38.78468');
INSERT INTO `tb_region` VALUES (3065, 3022, '平凉', '平凉市', '中国,甘肃省,平凉市', 2, 'pingliang', '0933', '744000', 'P', '106.684691', '35.54279');
INSERT INTO `tb_region` VALUES (3066, 3065, '崆峒', '崆峒区', '中国,甘肃省,平凉市,崆峒区', 3, 'kongtong', '0933', '744000', 'K', '106.67483', '35.54262');
INSERT INTO `tb_region` VALUES (3067, 3065, '泾川', '泾川县', '中国,甘肃省,平凉市,泾川县', 3, 'jingchuan', '0933', '744300', 'J', '107.36581', '35.33223');
INSERT INTO `tb_region` VALUES (3068, 3065, '灵台', '灵台县', '中国,甘肃省,平凉市,灵台县', 3, 'lingtai', '0933', '744400', 'L', '107.6174', '35.06768');
INSERT INTO `tb_region` VALUES (3069, 3065, '崇信', '崇信县', '中国,甘肃省,平凉市,崇信县', 3, 'chongxin', '0933', '744200', 'C', '107.03738', '35.30344');
INSERT INTO `tb_region` VALUES (3070, 3065, '华亭', '华亭县', '中国,甘肃省,平凉市,华亭县', 3, 'huating', '0933', '744100', 'H', '106.65463', '35.2183');
INSERT INTO `tb_region` VALUES (3071, 3065, '庄浪', '庄浪县', '中国,甘肃省,平凉市,庄浪县', 3, 'zhuanglang', '0933', '744600', 'Z', '106.03662', '35.20235');
INSERT INTO `tb_region` VALUES (3072, 3065, '静宁', '静宁县', '中国,甘肃省,平凉市,静宁县', 3, 'jingning', '0933', '743400', 'J', '105.72723', '35.51991');
INSERT INTO `tb_region` VALUES (3073, 3022, '酒泉', '酒泉市', '中国,甘肃省,酒泉市', 2, 'jiuquan', '0937', '735000', 'J', '98.510795', '39.744023');
INSERT INTO `tb_region` VALUES (3074, 3073, '肃州', '肃州区', '中国,甘肃省,酒泉市,肃州区', 3, 'suzhou', '0937', '735000', 'S', '98.50775', '39.74506');
INSERT INTO `tb_region` VALUES (3075, 3073, '金塔', '金塔县', '中国,甘肃省,酒泉市,金塔县', 3, 'jinta', '0937', '735300', 'J', '98.90002', '39.97733');
INSERT INTO `tb_region` VALUES (3076, 3073, '瓜州', '瓜州县', '中国,甘肃省,酒泉市,瓜州县', 3, 'guazhou', '0937', '736100', 'G', '95.78271', '40.51548');
INSERT INTO `tb_region` VALUES (3077, 3073, '肃北', '肃北蒙古族自治县', '中国,甘肃省,酒泉市,肃北蒙古族自治县', 3, 'subei', '0937', '736300', 'S', '94.87649', '39.51214');
INSERT INTO `tb_region` VALUES (3078, 3073, '阿克塞', '阿克塞哈萨克族自治县', '中国,甘肃省,酒泉市,阿克塞哈萨克族自治县', 3, 'akesai', '0937', '736400', 'A', '94.34097', '39.63435');
INSERT INTO `tb_region` VALUES (3079, 3073, '玉门', '玉门市', '中国,甘肃省,酒泉市,玉门市', 3, 'yumen', '0937', '735200', 'Y', '97.04538', '40.29172');
INSERT INTO `tb_region` VALUES (3080, 3073, '敦煌', '敦煌市', '中国,甘肃省,酒泉市,敦煌市', 3, 'dunhuang', '0937', '736200', 'D', '94.66159', '40.14211');
INSERT INTO `tb_region` VALUES (3081, 3022, '庆阳', '庆阳市', '中国,甘肃省,庆阳市', 2, 'qingyang', '0934', '745000', 'Q', '107.638372', '35.734218');
INSERT INTO `tb_region` VALUES (3082, 3081, '西峰', '西峰区', '中国,甘肃省,庆阳市,西峰区', 3, 'xifeng', '0934', '745000', 'X', '107.65107', '35.73065');
INSERT INTO `tb_region` VALUES (3083, 3081, '庆城', '庆城县', '中国,甘肃省,庆阳市,庆城县', 3, 'qingcheng', '0934', '745100', 'Q', '107.88272', '36.01507');
INSERT INTO `tb_region` VALUES (3084, 3081, '环县', '环县', '中国,甘肃省,庆阳市,环县', 3, 'huanxian', '0934', '745700', 'H', '107.30835', '36.56846');
INSERT INTO `tb_region` VALUES (3085, 3081, '华池', '华池县', '中国,甘肃省,庆阳市,华池县', 3, 'huachi', '0934', '745600', 'H', '107.9891', '36.46108');
INSERT INTO `tb_region` VALUES (3086, 3081, '合水', '合水县', '中国,甘肃省,庆阳市,合水县', 3, 'heshui', '0934', '745400', 'H', '108.02032', '35.81911');
INSERT INTO `tb_region` VALUES (3087, 3081, '正宁', '正宁县', '中国,甘肃省,庆阳市,正宁县', 3, 'zhengning', '0934', '745300', 'Z', '108.36007', '35.49174');
INSERT INTO `tb_region` VALUES (3088, 3081, '宁县', '宁县', '中国,甘肃省,庆阳市,宁县', 3, 'ningxian', '0934', '745200', 'N', '107.92517', '35.50164');
INSERT INTO `tb_region` VALUES (3089, 3081, '镇原', '镇原县', '中国,甘肃省,庆阳市,镇原县', 3, 'zhenyuan', '0934', '744500', 'Z', '107.199', '35.67712');
INSERT INTO `tb_region` VALUES (3090, 3022, '定西', '定西市', '中国,甘肃省,定西市', 2, 'dingxi', '0932', '743000', 'D', '104.626294', '35.579578');
INSERT INTO `tb_region` VALUES (3091, 3090, '安定', '安定区', '中国,甘肃省,定西市,安定区', 3, 'anding', '0932', '743000', 'A', '104.6106', '35.58066');
INSERT INTO `tb_region` VALUES (3092, 3090, '通渭', '通渭县', '中国,甘肃省,定西市,通渭县', 3, 'tongwei', '0932', '743300', 'T', '105.24224', '35.21101');
INSERT INTO `tb_region` VALUES (3093, 3090, '陇西', '陇西县', '中国,甘肃省,定西市,陇西县', 3, 'longxi', '0932', '748100', 'L', '104.63446', '35.00238');
INSERT INTO `tb_region` VALUES (3094, 3090, '渭源', '渭源县', '中国,甘肃省,定西市,渭源县', 3, 'weiyuan', '0932', '748200', 'W', '104.21435', '35.13649');
INSERT INTO `tb_region` VALUES (3095, 3090, '临洮', '临洮县', '中国,甘肃省,定西市,临洮县', 3, 'lintao', '0932', '730500', 'L', '103.86196', '35.3751');
INSERT INTO `tb_region` VALUES (3096, 3090, '漳县', '漳县', '中国,甘肃省,定西市,漳县', 3, 'zhangxian', '0932', '748300', 'Z', '104.46704', '34.84977');
INSERT INTO `tb_region` VALUES (3097, 3090, '岷县', '岷县', '中国,甘肃省,定西市,岷县', 3, 'minxian', '0932', '748400', 'M', '104.03772', '34.43444');
INSERT INTO `tb_region` VALUES (3098, 3022, '陇南', '陇南市', '中国,甘肃省,陇南市', 2, 'longnan', '0939', '746000', 'L', '104.929379', '33.388598');
INSERT INTO `tb_region` VALUES (3099, 3098, '武都', '武都区', '中国,甘肃省,陇南市,武都区', 3, 'wudu', '0939', '746000', 'W', '104.92652', '33.39239');
INSERT INTO `tb_region` VALUES (3100, 3098, '成县', '成县', '中国,甘肃省,陇南市,成县', 3, 'chengxian', '0939', '742500', 'C', '105.72586', '33.73925');
INSERT INTO `tb_region` VALUES (3101, 3098, '文县', '文县', '中国,甘肃省,陇南市,文县', 3, 'wenxian', '0939', '746400', 'W', '104.68362', '32.94337');
INSERT INTO `tb_region` VALUES (3102, 3098, '宕昌', '宕昌县', '中国,甘肃省,陇南市,宕昌县', 3, 'dangchang', '0939', '748500', 'D', '104.39349', '34.04732');
INSERT INTO `tb_region` VALUES (3103, 3098, '康县', '康县', '中国,甘肃省,陇南市,康县', 3, 'kangxian', '0939', '746500', 'K', '105.60711', '33.32912');
INSERT INTO `tb_region` VALUES (3104, 3098, '西和', '西和县', '中国,甘肃省,陇南市,西和县', 3, 'xihe', '0939', '742100', 'X', '105.30099', '34.01432');
INSERT INTO `tb_region` VALUES (3105, 3098, '礼县', '礼县', '中国,甘肃省,陇南市,礼县', 3, 'lixian', '0939', '742200', 'L', '105.17785', '34.18935');
INSERT INTO `tb_region` VALUES (3106, 3098, '徽县', '徽县', '中国,甘肃省,陇南市,徽县', 3, 'huixian', '0939', '742300', 'H', '106.08529', '33.76898');
INSERT INTO `tb_region` VALUES (3107, 3098, '两当', '两当县', '中国,甘肃省,陇南市,两当县', 3, 'liangdang', '0939', '742400', 'L', '106.30484', '33.9096');
INSERT INTO `tb_region` VALUES (3108, 3022, '临夏', '临夏回族自治州', '中国,甘肃省,临夏回族自治州', 2, 'linxia', '0930', '731100', 'L', '103.212006', '35.599446');
INSERT INTO `tb_region` VALUES (3109, 3108, '临夏', '临夏市', '中国,甘肃省,临夏回族自治州,临夏市', 3, 'linxia', '0930', '731100', 'L', '103.21', '35.59916');
INSERT INTO `tb_region` VALUES (3110, 3108, '临夏', '临夏县', '中国,甘肃省,临夏回族自治州,临夏县', 3, 'linxia', '0930', '731800', 'L', '102.9938', '35.49519');
INSERT INTO `tb_region` VALUES (3111, 3108, '康乐', '康乐县', '中国,甘肃省,临夏回族自治州,康乐县', 3, 'kangle', '0930', '731500', 'K', '103.71093', '35.37219');
INSERT INTO `tb_region` VALUES (3112, 3108, '永靖', '永靖县', '中国,甘肃省,临夏回族自治州,永靖县', 3, 'yongjing', '0930', '731600', 'Y', '103.32043', '35.93835');
INSERT INTO `tb_region` VALUES (3113, 3108, '广河', '广河县', '中国,甘肃省,临夏回族自治州,广河县', 3, 'guanghe', '0930', '731300', 'G', '103.56933', '35.48097');
INSERT INTO `tb_region` VALUES (3114, 3108, '和政', '和政县', '中国,甘肃省,临夏回族自治州,和政县', 3, 'hezheng', '0930', '731200', 'H', '103.34936', '35.42592');
INSERT INTO `tb_region` VALUES (3115, 3108, '东乡族', '东乡族自治县', '中国,甘肃省,临夏回族自治州,东乡族自治县', 3, 'dongxiangzu', '0930', '731400', 'D', '103.39477', '35.66471');
INSERT INTO `tb_region` VALUES (3116, 3108, '积石山', '积石山保安族东乡族撒拉族自治县', '中国,甘肃省,临夏回族自治州,积石山保安族东乡族撒拉族自治县', 3, 'jishishan', '0930', '731700', 'J', '102.87374', '35.7182');
INSERT INTO `tb_region` VALUES (3117, 3022, '甘南', '甘南藏族自治州', '中国,甘肃省,甘南藏族自治州', 2, 'gannan', '0941', '747000', 'G', '102.911008', '34.986354');
INSERT INTO `tb_region` VALUES (3118, 3117, '合作', '合作市', '中国,甘肃省,甘南藏族自治州,合作市', 3, 'hezuo', '0941', '747000', 'H', '102.91082', '35.00016');
INSERT INTO `tb_region` VALUES (3119, 3117, '临潭', '临潭县', '中国,甘肃省,甘南藏族自治州,临潭县', 3, 'lintan', '0941', '747500', 'L', '103.35287', '34.69515');
INSERT INTO `tb_region` VALUES (3120, 3117, '卓尼', '卓尼县', '中国,甘肃省,甘南藏族自治州,卓尼县', 3, 'zhuoni', '0941', '747600', 'Z', '103.50811', '34.58919');
INSERT INTO `tb_region` VALUES (3121, 3117, '舟曲', '舟曲县', '中国,甘肃省,甘南藏族自治州,舟曲县', 3, 'zhouqu', '0941', '746300', 'Z', '104.37155', '33.78468');
INSERT INTO `tb_region` VALUES (3122, 3117, '迭部', '迭部县', '中国,甘肃省,甘南藏族自治州,迭部县', 3, 'diebu', '0941', '747400', 'D', '103.22274', '34.05623');
INSERT INTO `tb_region` VALUES (3123, 3117, '玛曲', '玛曲县', '中国,甘肃省,甘南藏族自治州,玛曲县', 3, 'maqu', '0941', '747300', 'M', '102.0754', '33.997');
INSERT INTO `tb_region` VALUES (3124, 3117, '碌曲', '碌曲县', '中国,甘肃省,甘南藏族自治州,碌曲县', 3, 'luqu', '0941', '747200', 'L', '102.49176', '34.58872');
INSERT INTO `tb_region` VALUES (3125, 3117, '夏河', '夏河县', '中国,甘肃省,甘南藏族自治州,夏河县', 3, 'xiahe', '0941', '747100', 'X', '102.52215', '35.20487');
INSERT INTO `tb_region` VALUES (3126, 0, '青海', '青海省', '中国,青海省', 1, 'qinghai', '', '', 'Q', '101.778916', '36.623178');
INSERT INTO `tb_region` VALUES (3127, 3126, '西宁', '西宁市', '中国,青海省,西宁市', 2, 'xining', '0971', '810000', 'X', '101.778916', '36.623178');
INSERT INTO `tb_region` VALUES (3128, 3127, '城东', '城东区', '中国,青海省,西宁市,城东区', 3, 'chengdong', '0971', '810007', 'C', '101.80373', '36.59969');
INSERT INTO `tb_region` VALUES (3129, 3127, '城中', '城中区', '中国,青海省,西宁市,城中区', 3, 'chengzhong', '0971', '810000', 'C', '101.78394', '36.62279');
INSERT INTO `tb_region` VALUES (3130, 3127, '城西', '城西区', '中国,青海省,西宁市,城西区', 3, 'chengxi', '0971', '810001', 'C', '101.76588', '36.62828');
INSERT INTO `tb_region` VALUES (3131, 3127, '城北', '城北区', '中国,青海省,西宁市,城北区', 3, 'chengbei', '0971', '810003', 'C', '101.7662', '36.65014');
INSERT INTO `tb_region` VALUES (3132, 3127, '大通', '大通回族土族自治县', '中国,青海省,西宁市,大通回族土族自治县', 3, 'datong', '0971', '810100', 'D', '101.70236', '36.93489');
INSERT INTO `tb_region` VALUES (3133, 3127, '湟中', '湟中县', '中国,青海省,西宁市,湟中县', 3, 'huangzhong', '0971', '811600', 'H', '101.57159', '36.50083');
INSERT INTO `tb_region` VALUES (3134, 3127, '湟源', '湟源县', '中国,青海省,西宁市,湟源县', 3, 'huangyuan', '0971', '812100', 'H', '101.25643', '36.68243');
INSERT INTO `tb_region` VALUES (3135, 3126, '海东', '海东市', '中国,青海省,海东市', 2, 'haidong', '0972', '810700', 'H', '102.10327', '36.502916');
INSERT INTO `tb_region` VALUES (3136, 3135, '乐都', '乐都区', '中国,青海省,海东市,乐都区', 3, 'ledu', '0972', '810700', 'L', '102.402431', '36.480291');
INSERT INTO `tb_region` VALUES (3137, 3135, '平安', '平安县', '中国,青海省,海东市,平安县', 3, 'ping\'an', '0972', '810600', 'P', '102.104295', '36.502714');
INSERT INTO `tb_region` VALUES (3138, 3135, '民和', '民和回族土族自治县', '中国,青海省,海东市,民和回族土族自治县', 3, 'minhe', '0972', '810800', 'M', '102.804209', '36.329451');
INSERT INTO `tb_region` VALUES (3139, 3135, '互助', '互助土族自治县', '中国,青海省,海东市,互助土族自治县', 3, 'huzhu', '0972', '810500', 'H', '101.956734', '36.83994');
INSERT INTO `tb_region` VALUES (3140, 3135, '化隆', '化隆回族自治县', '中国,青海省,海东市,化隆回族自治县', 3, 'hualong', '0972', '810900', 'H', '102.262329', '36.098322');
INSERT INTO `tb_region` VALUES (3141, 3135, '循化', '循化撒拉族自治县', '中国,青海省,海东市,循化撒拉族自治县', 3, 'xunhua', '0972', '811100', 'X', '102.486534', '35.847247');
INSERT INTO `tb_region` VALUES (3142, 3126, '海北', '海北藏族自治州', '中国,青海省,海北藏族自治州', 2, 'haibei', '0970', '812200', 'H', '100.901059', '36.959435');
INSERT INTO `tb_region` VALUES (3143, 3142, '门源', '门源回族自治县', '中国,青海省,海北藏族自治州,门源回族自治县', 3, 'menyuan', '0970', '810300', 'M', '101.62228', '37.37611');
INSERT INTO `tb_region` VALUES (3144, 3142, '祁连', '祁连县', '中国,青海省,海北藏族自治州,祁连县', 3, 'qilian', '0970', '810400', 'Q', '100.24618', '38.17901');
INSERT INTO `tb_region` VALUES (3145, 3142, '海晏', '海晏县', '中国,青海省,海北藏族自治州,海晏县', 3, 'haiyan', '0970', '812200', 'H', '100.9927', '36.89902');
INSERT INTO `tb_region` VALUES (3146, 3142, '刚察', '刚察县', '中国,青海省,海北藏族自治州,刚察县', 3, 'gangcha', '0970', '812300', 'G', '100.14675', '37.32161');
INSERT INTO `tb_region` VALUES (3147, 3126, '黄南', '黄南藏族自治州', '中国,青海省,黄南藏族自治州', 2, 'huangnan', '0973', '811300', 'H', '102.019988', '35.517744');
INSERT INTO `tb_region` VALUES (3148, 3147, '同仁', '同仁县', '中国,青海省,黄南藏族自治州,同仁县', 3, 'tongren', '0973', '811300', 'T', '102.0184', '35.51603');
INSERT INTO `tb_region` VALUES (3149, 3147, '尖扎', '尖扎县', '中国,青海省,黄南藏族自治州,尖扎县', 3, 'jianzha', '0973', '811200', 'J', '102.03411', '35.93947');
INSERT INTO `tb_region` VALUES (3150, 3147, '泽库', '泽库县', '中国,青海省,黄南藏族自治州,泽库县', 3, 'zeku', '0973', '811400', 'Z', '101.46444', '35.03519');
INSERT INTO `tb_region` VALUES (3151, 3147, '河南', '河南蒙古族自治县', '中国,青海省,黄南藏族自治州,河南蒙古族自治县', 3, 'henan', '0973', '811500', 'H', '101.60864', '34.73476');
INSERT INTO `tb_region` VALUES (3152, 3126, '海南', '海南藏族自治州', '中国,青海省,海南藏族自治州', 2, 'hainan', '0974', '813000', 'H', '100.619542', '36.280353');
INSERT INTO `tb_region` VALUES (3153, 3152, '共和', '共和县', '中国,青海省,海南藏族自治州,共和县', 3, 'gonghe', '0974', '813000', 'G', '100.62003', '36.2841');
INSERT INTO `tb_region` VALUES (3154, 3152, '同德', '同德县', '中国,青海省,海南藏族自治州,同德县', 3, 'tongde', '0974', '813200', 'T', '100.57159', '35.25488');
INSERT INTO `tb_region` VALUES (3155, 3152, '贵德', '贵德县', '中国,青海省,海南藏族自治州,贵德县', 3, 'guide', '0974', '811700', 'G', '101.432', '36.044');
INSERT INTO `tb_region` VALUES (3156, 3152, '兴海', '兴海县', '中国,青海省,海南藏族自治州,兴海县', 3, 'xinghai', '0974', '813300', 'X', '99.98846', '35.59031');
INSERT INTO `tb_region` VALUES (3157, 3152, '贵南', '贵南县', '中国,青海省,海南藏族自治州,贵南县', 3, 'guinan', '0974', '813100', 'G', '100.74716', '35.58667');
INSERT INTO `tb_region` VALUES (3158, 3126, '果洛', '果洛藏族自治州', '中国,青海省,果洛藏族自治州', 2, 'golog', '0975', '814000', 'G', '100.242143', '34.4736');
INSERT INTO `tb_region` VALUES (3159, 3158, '玛沁', '玛沁县', '中国,青海省,果洛藏族自治州,玛沁县', 3, 'maqin', '0975', '814000', 'M', '100.23901', '34.47746');
INSERT INTO `tb_region` VALUES (3160, 3158, '班玛', '班玛县', '中国,青海省,果洛藏族自治州,班玛县', 3, 'banma', '0975', '814300', 'B', '100.73745', '32.93253');
INSERT INTO `tb_region` VALUES (3161, 3158, '甘德', '甘德县', '中国,青海省,果洛藏族自治州,甘德县', 3, 'gande', '0975', '814100', 'G', '99.90246', '33.96838');
INSERT INTO `tb_region` VALUES (3162, 3158, '达日', '达日县', '中国,青海省,果洛藏族自治州,达日县', 3, 'dari', '0975', '814200', 'D', '99.65179', '33.75193');
INSERT INTO `tb_region` VALUES (3163, 3158, '久治', '久治县', '中国,青海省,果洛藏族自治州,久治县', 3, 'jiuzhi', '0975', '624700', 'J', '101.48342', '33.42989');
INSERT INTO `tb_region` VALUES (3164, 3158, '玛多', '玛多县', '中国,青海省,果洛藏族自治州,玛多县', 3, 'maduo', '0975', '813500', 'M', '98.20996', '34.91567');
INSERT INTO `tb_region` VALUES (3165, 3126, '玉树', '玉树藏族自治州', '中国,青海省,玉树藏族自治州', 2, 'yushu', '0976', '815000', 'Y', '97.008522', '33.004049');
INSERT INTO `tb_region` VALUES (3166, 3165, '玉树', '玉树市', '中国,青海省,玉树藏族自治州,玉树市', 3, 'yushu', '0976', '815000', 'Y', '97.008762', '33.00393');
INSERT INTO `tb_region` VALUES (3167, 3165, '杂多', '杂多县', '中国,青海省,玉树藏族自治州,杂多县', 3, 'zaduo', '0976', '815300', 'Z', '95.29864', '32.89318');
INSERT INTO `tb_region` VALUES (3168, 3165, '称多', '称多县', '中国,青海省,玉树藏族自治州,称多县', 3, 'chenduo', '0976', '815100', 'C', '97.10788', '33.36899');
INSERT INTO `tb_region` VALUES (3169, 3165, '治多', '治多县', '中国,青海省,玉树藏族自治州,治多县', 3, 'zhiduo', '0976', '815400', 'Z', '95.61572', '33.8528');
INSERT INTO `tb_region` VALUES (3170, 3165, '囊谦', '囊谦县', '中国,青海省,玉树藏族自治州,囊谦县', 3, 'nangqian', '0976', '815200', 'N', '96.47753', '32.20359');
INSERT INTO `tb_region` VALUES (3171, 3165, '曲麻莱', '曲麻莱县', '中国,青海省,玉树藏族自治州,曲麻莱县', 3, 'qumalai', '0976', '815500', 'Q', '95.79757', '34.12609');
INSERT INTO `tb_region` VALUES (3172, 3126, '海西', '海西蒙古族藏族自治州', '中国,青海省,海西蒙古族藏族自治州', 2, 'haixi', '0977', '817000', 'H', '97.370785', '37.374663');
INSERT INTO `tb_region` VALUES (3173, 3172, '格尔木', '格尔木市', '中国,青海省,海西蒙古族藏族自治州,格尔木市', 3, 'geermu', '0977', '816000', 'G', '94.90329', '36.40236');
INSERT INTO `tb_region` VALUES (3174, 3172, '德令哈', '德令哈市', '中国,青海省,海西蒙古族藏族自治州,德令哈市', 3, 'delingha', '0977', '817000', 'D', '97.36084', '37.36946');
INSERT INTO `tb_region` VALUES (3175, 3172, '乌兰', '乌兰县', '中国,青海省,海西蒙古族藏族自治州,乌兰县', 3, 'wulan', '0977', '817100', 'W', '98.48196', '36.93471');
INSERT INTO `tb_region` VALUES (3176, 3172, '都兰', '都兰县', '中国,青海省,海西蒙古族藏族自治州,都兰县', 3, 'dulan', '0977', '816100', 'D', '98.09228', '36.30135');
INSERT INTO `tb_region` VALUES (3177, 3172, '天峻', '天峻县', '中国,青海省,海西蒙古族藏族自治州,天峻县', 3, 'tianjun', '0977', '817200', 'T', '99.02453', '37.30326');
INSERT INTO `tb_region` VALUES (3178, 0, '宁夏', '宁夏回族自治区', '中国,宁夏回族自治区', 1, 'ningxia', '', '', 'N', '106.278179', '38.46637');
INSERT INTO `tb_region` VALUES (3179, 3178, '银川', '银川市', '中国,宁夏回族自治区,银川市', 2, 'yinchuan', '0951', '750004', 'Y', '106.278179', '38.46637');
INSERT INTO `tb_region` VALUES (3180, 3179, '兴庆', '兴庆区', '中国,宁夏回族自治区,银川市,兴庆区', 3, 'xingqing', '0951', '750001', 'X', '106.28872', '38.47392');
INSERT INTO `tb_region` VALUES (3181, 3179, '西夏', '西夏区', '中国,宁夏回族自治区,银川市,西夏区', 3, 'xixia', '0951', '750021', 'X', '106.15023', '38.49137');
INSERT INTO `tb_region` VALUES (3182, 3179, '金凤', '金凤区', '中国,宁夏回族自治区,银川市,金凤区', 3, 'jinfeng', '0951', '750011', 'J', '106.24261', '38.47294');
INSERT INTO `tb_region` VALUES (3183, 3179, '永宁', '永宁县', '中国,宁夏回族自治区,银川市,永宁县', 3, 'yongning', '0951', '750100', 'Y', '106.2517', '38.27559');
INSERT INTO `tb_region` VALUES (3184, 3179, '贺兰', '贺兰县', '中国,宁夏回族自治区,银川市,贺兰县', 3, 'helan', '0951', '750200', 'H', '106.34982', '38.5544');
INSERT INTO `tb_region` VALUES (3185, 3179, '灵武', '灵武市', '中国,宁夏回族自治区,银川市,灵武市', 3, 'lingwu', '0951', '750004', 'L', '106.33999', '38.10266');
INSERT INTO `tb_region` VALUES (3186, 3178, '石嘴山', '石嘴山市', '中国,宁夏回族自治区,石嘴山市', 2, 'shizuishan', '0952', '753000', 'S', '106.376173', '39.01333');
INSERT INTO `tb_region` VALUES (3187, 3186, '大武口', '大武口区', '中国,宁夏回族自治区,石嘴山市,大武口区', 3, 'dawukou', '0952', '753000', 'D', '106.37717', '39.01226');
INSERT INTO `tb_region` VALUES (3188, 3186, '惠农', '惠农区', '中国,宁夏回族自治区,石嘴山市,惠农区', 3, 'huinong', '0952', '753600', 'H', '106.71145', '39.13193');
INSERT INTO `tb_region` VALUES (3189, 3186, '平罗', '平罗县', '中国,宁夏回族自治区,石嘴山市,平罗县', 3, 'pingluo', '0952', '753400', 'P', '106.54538', '38.90429');
INSERT INTO `tb_region` VALUES (3190, 3178, '吴忠', '吴忠市', '中国,宁夏回族自治区,吴忠市', 2, 'wuzhong', '0953', '751100', 'W', '106.199409', '37.986165');
INSERT INTO `tb_region` VALUES (3191, 3190, '利通', '利通区', '中国,宁夏回族自治区,吴忠市,利通区', 3, 'litong', '0953', '751100', 'L', '106.20311', '37.98512');
INSERT INTO `tb_region` VALUES (3192, 3190, '红寺堡', '红寺堡区', '中国,宁夏回族自治区,吴忠市,红寺堡区', 3, 'hongsibao', '0953', '751900', 'H', '106.19822', '37.99747');
INSERT INTO `tb_region` VALUES (3193, 3190, '盐池', '盐池县', '中国,宁夏回族自治区,吴忠市,盐池县', 3, 'yanchi', '0953', '751500', 'Y', '107.40707', '37.7833');
INSERT INTO `tb_region` VALUES (3194, 3190, '同心', '同心县', '中国,宁夏回族自治区,吴忠市,同心县', 3, 'tongxin', '0953', '751300', 'T', '105.91418', '36.98116');
INSERT INTO `tb_region` VALUES (3195, 3190, '青铜峡', '青铜峡市', '中国,宁夏回族自治区,吴忠市,青铜峡市', 3, 'qingtongxia', '0953', '751600', 'Q', '106.07489', '38.02004');
INSERT INTO `tb_region` VALUES (3196, 3178, '固原', '固原市', '中国,宁夏回族自治区,固原市', 2, 'guyuan', '0954', '756000', 'G', '106.285241', '36.004561');
INSERT INTO `tb_region` VALUES (3197, 3196, '原州', '原州区', '中国,宁夏回族自治区,固原市,原州区', 3, 'yuanzhou', '0954', '756000', 'Y', '106.28778', '36.00374');
INSERT INTO `tb_region` VALUES (3198, 3196, '西吉', '西吉县', '中国,宁夏回族自治区,固原市,西吉县', 3, 'xiji', '0954', '756200', 'X', '105.73107', '35.96616');
INSERT INTO `tb_region` VALUES (3199, 3196, '隆德', '隆德县', '中国,宁夏回族自治区,固原市,隆德县', 3, 'longde', '0954', '756300', 'L', '106.12426', '35.61718');
INSERT INTO `tb_region` VALUES (3200, 3196, '泾源', '泾源县', '中国,宁夏回族自治区,固原市,泾源县', 3, 'jingyuan', '0954', '756400', 'J', '106.33902', '35.49072');
INSERT INTO `tb_region` VALUES (3201, 3196, '彭阳', '彭阳县', '中国,宁夏回族自治区,固原市,彭阳县', 3, 'pengyang', '0954', '756500', 'P', '106.64462', '35.85076');
INSERT INTO `tb_region` VALUES (3202, 3178, '中卫', '中卫市', '中国,宁夏回族自治区,中卫市', 2, 'zhongwei', '0955', '751700', 'Z', '105.189568', '37.514951');
INSERT INTO `tb_region` VALUES (3203, 3202, '沙坡头', '沙坡头区', '中国,宁夏回族自治区,中卫市,沙坡头区', 3, 'shapotou', '0955', '755000', 'S', '105.18962', '37.51044');
INSERT INTO `tb_region` VALUES (3204, 3202, '中宁', '中宁县', '中国,宁夏回族自治区,中卫市,中宁县', 3, 'zhongning', '0955', '751200', 'Z', '105.68515', '37.49149');
INSERT INTO `tb_region` VALUES (3205, 3202, '海原', '海原县', '中国,宁夏回族自治区,中卫市,海原县', 3, 'haiyuan', '0955', '751800', 'H', '105.64712', '36.56498');
INSERT INTO `tb_region` VALUES (3206, 0, '新疆', '新疆维吾尔自治区', '中国,新疆维吾尔自治区', 1, 'xinjiang', '', '', 'X', '87.617733', '43.792818');
INSERT INTO `tb_region` VALUES (3207, 3206, '乌鲁木齐', '乌鲁木齐市', '中国,新疆维吾尔自治区,乌鲁木齐市', 2, 'urumqi', '0991', '830002', 'W', '87.617733', '43.792818');
INSERT INTO `tb_region` VALUES (3208, 3207, '天山', '天山区', '中国,新疆维吾尔自治区,乌鲁木齐市,天山区', 3, 'tianshan', '0991', '830002', 'T', '87.63167', '43.79439');
INSERT INTO `tb_region` VALUES (3209, 3207, '沙依巴克', '沙依巴克区', '中国,新疆维吾尔自治区,乌鲁木齐市,沙依巴克区', 3, 'shayibake', '0991', '830000', 'S', '87.59788', '43.80118');
INSERT INTO `tb_region` VALUES (3210, 3207, '新市', '新市区', '中国,新疆维吾尔自治区,乌鲁木齐市,新市区', 3, 'xinshi', '0991', '830011', 'X', '87.57406', '43.84348');
INSERT INTO `tb_region` VALUES (3211, 3207, '水磨沟', '水磨沟区', '中国,新疆维吾尔自治区,乌鲁木齐市,水磨沟区', 3, 'shuimogou', '0991', '830017', 'S', '87.64249', '43.83247');
INSERT INTO `tb_region` VALUES (3212, 3207, '头屯河', '头屯河区', '中国,新疆维吾尔自治区,乌鲁木齐市,头屯河区', 3, 'toutunhe', '0991', '830022', 'T', '87.29138', '43.85487');
INSERT INTO `tb_region` VALUES (3213, 3207, '达坂城', '达坂城区', '中国,新疆维吾尔自治区,乌鲁木齐市,达坂城区', 3, 'dabancheng', '0991', '830039', 'D', '88.30697', '43.35797');
INSERT INTO `tb_region` VALUES (3214, 3207, '米东', '米东区', '中国,新疆维吾尔自治区,乌鲁木齐市,米东区', 3, 'midong', '0991', '830019', 'M', '87.68583', '43.94739');
INSERT INTO `tb_region` VALUES (3215, 3207, '乌鲁木齐', '乌鲁木齐县', '中国,新疆维吾尔自治区,乌鲁木齐市,乌鲁木齐县', 3, 'wulumuqi', '0991', '830063', 'W', '87.40939', '43.47125');
INSERT INTO `tb_region` VALUES (3216, 3206, '克拉玛依', '克拉玛依市', '中国,新疆维吾尔自治区,克拉玛依市', 2, 'karamay', '0990', '834000', 'K', '84.873946', '45.595886');
INSERT INTO `tb_region` VALUES (3217, 3216, '独山子', '独山子区', '中国,新疆维吾尔自治区,克拉玛依市,独山子区', 3, 'dushanzi', '0992', '834021', 'D', '84.88671', '44.32867');
INSERT INTO `tb_region` VALUES (3218, 3216, '克拉玛依', '克拉玛依区', '中国,新疆维吾尔自治区,克拉玛依市,克拉玛依区', 3, 'kelamayi', '0990', '834000', 'K', '84.86225', '45.59089');
INSERT INTO `tb_region` VALUES (3219, 3216, '白碱滩', '白碱滩区', '中国,新疆维吾尔自治区,克拉玛依市,白碱滩区', 3, 'baijiantan', '0990', '834008', 'B', '85.13244', '45.68768');
INSERT INTO `tb_region` VALUES (3220, 3216, '乌尔禾', '乌尔禾区', '中国,新疆维吾尔自治区,克拉玛依市,乌尔禾区', 3, 'wuerhe', '0990', '834012', 'W', '85.69143', '46.09006');
INSERT INTO `tb_region` VALUES (3221, 3206, '吐鲁番', '吐鲁番地区', '中国,新疆维吾尔自治区,吐鲁番地区', 2, 'turpan', '0995', '838000', 'T', '89.184078', '42.947613');
INSERT INTO `tb_region` VALUES (3222, 3221, '吐鲁番', '吐鲁番市', '中国,新疆维吾尔自治区,吐鲁番地区,吐鲁番市', 3, 'tulufan', '0995', '838000', 'T', '89.18579', '42.93505');
INSERT INTO `tb_region` VALUES (3223, 3221, '鄯善', '鄯善县', '中国,新疆维吾尔自治区,吐鲁番地区,鄯善县', 3, 'shanshan', '0995', '838200', 'S', '90.21402', '42.8635');
INSERT INTO `tb_region` VALUES (3224, 3221, '托克逊', '托克逊县', '中国,新疆维吾尔自治区,吐鲁番地区,托克逊县', 3, 'tuokexun', '0995', '838100', 'T', '88.65823', '42.79231');
INSERT INTO `tb_region` VALUES (3225, 3206, '哈密', '哈密地区', '中国,新疆维吾尔自治区,哈密地区', 2, 'hami', '0902', '839000', 'H', '93.51316', '42.833248');
INSERT INTO `tb_region` VALUES (3226, 3225, '哈密', '哈密市', '中国,新疆维吾尔自治区,哈密地区,哈密市', 3, 'hami', '0902', '839000', 'H', '93.51452', '42.82699');
INSERT INTO `tb_region` VALUES (3227, 3225, '巴里坤', '巴里坤哈萨克自治县', '中国,新疆维吾尔自治区,哈密地区,巴里坤哈萨克自治县', 3, 'balikun', '0902', '839200', 'B', '93.01236', '43.59993');
INSERT INTO `tb_region` VALUES (3228, 3225, '伊吾', '伊吾县', '中国,新疆维吾尔自治区,哈密地区,伊吾县', 3, 'yiwu', '0902', '839300', 'Y', '94.69403', '43.2537');
INSERT INTO `tb_region` VALUES (3229, 3206, '昌吉', '昌吉回族自治州', '中国,新疆维吾尔自治区,昌吉回族自治州', 2, 'changji', '0994', '831100', 'C', '87.304012', '44.014577');
INSERT INTO `tb_region` VALUES (3230, 3229, '昌吉', '昌吉市', '中国,新疆维吾尔自治区,昌吉回族自治州,昌吉市', 3, 'changji', '0994', '831100', 'C', '87.30249', '44.01267');
INSERT INTO `tb_region` VALUES (3231, 3229, '阜康', '阜康市', '中国,新疆维吾尔自治区,昌吉回族自治州,阜康市', 3, 'fukang', '0994', '831500', 'F', '87.98529', '44.1584');
INSERT INTO `tb_region` VALUES (3232, 3229, '呼图壁', '呼图壁县', '中国,新疆维吾尔自治区,昌吉回族自治州,呼图壁县', 3, 'hutubi', '0994', '831200', 'H', '86.89892', '44.18977');
INSERT INTO `tb_region` VALUES (3233, 3229, '玛纳斯', '玛纳斯县', '中国,新疆维吾尔自治区,昌吉回族自治州,玛纳斯县', 3, 'manasi', '0994', '832200', 'M', '86.2145', '44.30438');
INSERT INTO `tb_region` VALUES (3234, 3229, '奇台', '奇台县', '中国,新疆维吾尔自治区,昌吉回族自治州,奇台县', 3, 'qitai', '0994', '831800', 'Q', '89.5932', '44.02221');
INSERT INTO `tb_region` VALUES (3235, 3229, '吉木萨尔', '吉木萨尔县', '中国,新疆维吾尔自治区,昌吉回族自治州,吉木萨尔县', 3, 'jimusaer', '0994', '831700', 'J', '89.18078', '44.00048');
INSERT INTO `tb_region` VALUES (3236, 3229, '木垒', '木垒哈萨克自治县', '中国,新疆维吾尔自治区,昌吉回族自治州,木垒哈萨克自治县', 3, 'mulei', '0994', '831900', 'M', '90.28897', '43.83508');
INSERT INTO `tb_region` VALUES (3237, 3206, '博尔塔拉', '博尔塔拉蒙古自治州', '中国,新疆维吾尔自治区,博尔塔拉蒙古自治州', 2, 'bortala', '0909', '833400', 'B', '82.074778', '44.903258');
INSERT INTO `tb_region` VALUES (3238, 3237, '博乐', '博乐市', '中国,新疆维吾尔自治区,博尔塔拉蒙古自治州,博乐市', 3, 'bole', '0909', '833400', 'B', '82.0713', '44.90052');
INSERT INTO `tb_region` VALUES (3239, 3237, '阿拉山口', '阿拉山口市', '中国,新疆维吾尔自治区,博尔塔拉蒙古自治州,阿拉山口市', 3, 'alashankou', '0909', '833400', 'A', '82.567721', '45.170616');
INSERT INTO `tb_region` VALUES (3240, 3237, '精河', '精河县', '中国,新疆维吾尔自治区,博尔塔拉蒙古自治州,精河县', 3, 'jinghe', '0909', '833300', 'J', '82.89419', '44.60774');
INSERT INTO `tb_region` VALUES (3241, 3237, '温泉', '温泉县', '中国,新疆维吾尔自治区,博尔塔拉蒙古自治州,温泉县', 3, 'wenquan', '0909', '833500', 'W', '81.03134', '44.97373');
INSERT INTO `tb_region` VALUES (3242, 3206, '巴音郭楞', '巴音郭楞蒙古自治州', '中国,新疆维吾尔自治区,巴音郭楞蒙古自治州', 2, 'bayingol', '0996', '841000', 'B', '86.150969', '41.768552');
INSERT INTO `tb_region` VALUES (3243, 3242, '库尔勒', '库尔勒市', '中国,新疆维吾尔自治区,巴音郭楞蒙古自治州,库尔勒市', 3, 'kuerle', '0996', '841000', 'K', '86.15528', '41.76602');
INSERT INTO `tb_region` VALUES (3244, 3242, '轮台', '轮台县', '中国,新疆维吾尔自治区,巴音郭楞蒙古自治州,轮台县', 3, 'luntai', '0996', '841600', 'L', '84.26101', '41.77642');
INSERT INTO `tb_region` VALUES (3245, 3242, '尉犁', '尉犁县', '中国,新疆维吾尔自治区,巴音郭楞蒙古自治州,尉犁县', 3, 'yuli', '0996', '841500', 'W', '86.25903', '41.33632');
INSERT INTO `tb_region` VALUES (3246, 3242, '若羌', '若羌县', '中国,新疆维吾尔自治区,巴音郭楞蒙古自治州,若羌县', 3, 'ruoqiang', '0996', '841800', 'R', '88.16812', '39.0179');
INSERT INTO `tb_region` VALUES (3247, 3242, '且末', '且末县', '中国,新疆维吾尔自治区,巴音郭楞蒙古自治州,且末县', 3, 'qiemo', '0996', '841900', 'Q', '85.52975', '38.14534');
INSERT INTO `tb_region` VALUES (3248, 3242, '焉耆', '焉耆回族自治县', '中国,新疆维吾尔自治区,巴音郭楞蒙古自治州,焉耆回族自治县', 3, 'yanqi', '0996', '841100', 'Y', '86.5744', '42.059');
INSERT INTO `tb_region` VALUES (3249, 3242, '和静', '和静县', '中国,新疆维吾尔自治区,巴音郭楞蒙古自治州,和静县', 3, 'hejing', '0996', '841300', 'H', '86.39611', '42.31838');
INSERT INTO `tb_region` VALUES (3250, 3242, '和硕', '和硕县', '中国,新疆维吾尔自治区,巴音郭楞蒙古自治州,和硕县', 3, 'heshuo', '0996', '841200', 'H', '86.86392', '42.26814');
INSERT INTO `tb_region` VALUES (3251, 3242, '博湖', '博湖县', '中国,新疆维吾尔自治区,巴音郭楞蒙古自治州,博湖县', 3, 'bohu', '0996', '841400', 'B', '86.63333', '41.98014');
INSERT INTO `tb_region` VALUES (3252, 3206, '阿克苏', '阿克苏地区', '中国,新疆维吾尔自治区,阿克苏地区', 2, 'aksu', '0997', '843000', 'A', '80.265068', '41.170712');
INSERT INTO `tb_region` VALUES (3253, 3252, '阿克苏', '阿克苏市', '中国,新疆维吾尔自治区,阿克苏地区,阿克苏市', 3, 'akesu', '0997', '843000', 'A', '80.26338', '41.16754');
INSERT INTO `tb_region` VALUES (3254, 3252, '温宿', '温宿县', '中国,新疆维吾尔自治区,阿克苏地区,温宿县', 3, 'wensu', '0997', '843100', 'W', '80.24173', '41.27679');
INSERT INTO `tb_region` VALUES (3255, 3252, '库车', '库车县', '中国,新疆维吾尔自治区,阿克苏地区,库车县', 3, 'kuche', '0997', '842000', 'K', '82.96209', '41.71793');
INSERT INTO `tb_region` VALUES (3256, 3252, '沙雅', '沙雅县', '中国,新疆维吾尔自治区,阿克苏地区,沙雅县', 3, 'shaya', '0997', '842200', 'S', '82.78131', '41.22497');
INSERT INTO `tb_region` VALUES (3257, 3252, '新和', '新和县', '中国,新疆维吾尔自治区,阿克苏地区,新和县', 3, 'xinhe', '0997', '842100', 'X', '82.61053', '41.54964');
INSERT INTO `tb_region` VALUES (3258, 3252, '拜城', '拜城县', '中国,新疆维吾尔自治区,阿克苏地区,拜城县', 3, 'baicheng', '0997', '842300', 'B', '81.87564', '41.79801');
INSERT INTO `tb_region` VALUES (3259, 3252, '乌什', '乌什县', '中国,新疆维吾尔自治区,阿克苏地区,乌什县', 3, 'wushi', '0997', '843400', 'W', '79.22937', '41.21569');
INSERT INTO `tb_region` VALUES (3260, 3252, '阿瓦提', '阿瓦提县', '中国,新疆维吾尔自治区,阿克苏地区,阿瓦提县', 3, 'awati', '0997', '843200', 'A', '80.38336', '40.63926');
INSERT INTO `tb_region` VALUES (3261, 3252, '柯坪', '柯坪县', '中国,新疆维吾尔自治区,阿克苏地区,柯坪县', 3, 'keping', '0997', '843600', 'K', '79.04751', '40.50585');
INSERT INTO `tb_region` VALUES (3262, 3206, '克孜勒苏', '克孜勒苏柯尔克孜自治州', '中国,新疆维吾尔自治区,克孜勒苏柯尔克孜自治州', 2, 'kizilsu', '0908', '845350', 'K', '76.172825', '39.713431');
INSERT INTO `tb_region` VALUES (3263, 3262, '阿图什', '阿图什市', '中国,新疆维吾尔自治区,克孜勒苏柯尔克孜自治州,阿图什市', 3, 'atushi', '0908', '845350', 'A', '76.16827', '39.71615');
INSERT INTO `tb_region` VALUES (3264, 3262, '阿克陶', '阿克陶县', '中国,新疆维吾尔自治区,克孜勒苏柯尔克孜自治州,阿克陶县', 3, 'aketao', '0908', '845550', 'A', '75.94692', '39.14892');
INSERT INTO `tb_region` VALUES (3265, 3262, '阿合奇', '阿合奇县', '中国,新疆维吾尔自治区,克孜勒苏柯尔克孜自治州,阿合奇县', 3, 'aheqi', '0997', '843500', 'A', '78.44848', '40.93947');
INSERT INTO `tb_region` VALUES (3266, 3262, '乌恰', '乌恰县', '中国,新疆维吾尔自治区,克孜勒苏柯尔克孜自治州,乌恰县', 3, 'wuqia', '0908', '845450', 'W', '75.25839', '39.71984');
INSERT INTO `tb_region` VALUES (3267, 3206, '喀什', '喀什地区', '中国,新疆维吾尔自治区,喀什地区', 2, 'kashgar', '0998', '844000', 'K', '75.989138', '39.467664');
INSERT INTO `tb_region` VALUES (3268, 3267, '喀什', '喀什市', '中国,新疆维吾尔自治区,喀什地区,喀什市', 3, 'kashi', '0998', '844000', 'K', '75.99379', '39.46768');
INSERT INTO `tb_region` VALUES (3269, 3267, '疏附', '疏附县', '中国,新疆维吾尔自治区,喀什地区,疏附县', 3, 'shufu', '0998', '844100', 'S', '75.86029', '39.37534');
INSERT INTO `tb_region` VALUES (3270, 3267, '疏勒', '疏勒县', '中国,新疆维吾尔自治区,喀什地区,疏勒县', 3, 'shule', '0998', '844200', 'S', '76.05398', '39.40625');
INSERT INTO `tb_region` VALUES (3271, 3267, '英吉沙', '英吉沙县', '中国,新疆维吾尔自治区,喀什地区,英吉沙县', 3, 'yingjisha', '0998', '844500', 'Y', '76.17565', '38.92968');
INSERT INTO `tb_region` VALUES (3272, 3267, '泽普', '泽普县', '中国,新疆维吾尔自治区,喀什地区,泽普县', 3, 'zepu', '0998', '844800', 'Z', '77.27145', '38.18935');
INSERT INTO `tb_region` VALUES (3273, 3267, '莎车', '莎车县', '中国,新疆维吾尔自治区,喀什地区,莎车县', 3, 'shache', '0998', '844700', 'S', '77.24316', '38.41601');
INSERT INTO `tb_region` VALUES (3274, 3267, '叶城', '叶城县', '中国,新疆维吾尔自治区,喀什地区,叶城县', 3, 'yecheng', '0998', '844900', 'Y', '77.41659', '37.88324');
INSERT INTO `tb_region` VALUES (3275, 3267, '麦盖提', '麦盖提县', '中国,新疆维吾尔自治区,喀什地区,麦盖提县', 3, 'maigaiti', '0998', '844600', 'M', '77.64224', '38.89662');
INSERT INTO `tb_region` VALUES (3276, 3267, '岳普湖', '岳普湖县', '中国,新疆维吾尔自治区,喀什地区,岳普湖县', 3, 'yuepuhu', '0998', '844400', 'Y', '76.77233', '39.23561');
INSERT INTO `tb_region` VALUES (3277, 3267, '伽师', '伽师县', '中国,新疆维吾尔自治区,喀什地区,伽师县', 3, 'jiashi', '0998', '844300', 'G', '76.72372', '39.48801');
INSERT INTO `tb_region` VALUES (3278, 3267, '巴楚', '巴楚县', '中国,新疆维吾尔自治区,喀什地区,巴楚县', 3, 'bachu', '0998', '843800', 'B', '78.54888', '39.7855');
INSERT INTO `tb_region` VALUES (3279, 3267, '塔什库尔干塔吉克', '塔什库尔干塔吉克自治县', '中国,新疆维吾尔自治区,喀什地区,塔什库尔干塔吉克自治县', 3, 'tashikuergantajike', '0998', '845250', 'T', '75.23196', '37.77893');
INSERT INTO `tb_region` VALUES (3280, 3206, '和田', '和田地区', '中国,新疆维吾尔自治区,和田地区', 2, 'hotan', '0903', '848000', 'H', '79.92533', '37.110687');
INSERT INTO `tb_region` VALUES (3281, 3280, '和田市', '和田市', '中国,新疆维吾尔自治区,和田地区,和田市', 3, 'hetianshi', '0903', '848000', 'H', '79.91353', '37.11214');
INSERT INTO `tb_region` VALUES (3282, 3280, '和田县', '和田县', '中国,新疆维吾尔自治区,和田地区,和田县', 3, 'hetianxian', '0903', '848000', 'H', '79.82874', '37.08922');
INSERT INTO `tb_region` VALUES (3283, 3280, '墨玉', '墨玉县', '中国,新疆维吾尔自治区,和田地区,墨玉县', 3, 'moyu', '0903', '848100', 'M', '79.74035', '37.27248');
INSERT INTO `tb_region` VALUES (3284, 3280, '皮山', '皮山县', '中国,新疆维吾尔自治区,和田地区,皮山县', 3, 'pishan', '0903', '845150', 'P', '78.28125', '37.62007');
INSERT INTO `tb_region` VALUES (3285, 3280, '洛浦', '洛浦县', '中国,新疆维吾尔自治区,和田地区,洛浦县', 3, 'luopu', '0903', '848200', 'L', '80.18536', '37.07364');
INSERT INTO `tb_region` VALUES (3286, 3280, '策勒', '策勒县', '中国,新疆维吾尔自治区,和田地区,策勒县', 3, 'cele', '0903', '848300', 'C', '80.80999', '36.99843');
INSERT INTO `tb_region` VALUES (3287, 3280, '于田', '于田县', '中国,新疆维吾尔自治区,和田地区,于田县', 3, 'yutian', '0903', '848400', 'Y', '81.66717', '36.854');
INSERT INTO `tb_region` VALUES (3288, 3280, '民丰', '民丰县', '中国,新疆维吾尔自治区,和田地区,民丰县', 3, 'minfeng', '0903', '848500', 'M', '82.68444', '37.06577');
INSERT INTO `tb_region` VALUES (3289, 3206, '伊犁', '伊犁哈萨克自治州', '中国,新疆维吾尔自治区,伊犁哈萨克自治州', 2, 'ili', '0999', '835100', 'Y', '81.317946', '43.92186');
INSERT INTO `tb_region` VALUES (3290, 3289, '伊宁', '伊宁市', '中国,新疆维吾尔自治区,伊犁哈萨克自治州,伊宁市', 3, 'yining', '0999', '835000', 'Y', '81.32932', '43.91294');
INSERT INTO `tb_region` VALUES (3291, 3289, '奎屯', '奎屯市', '中国,新疆维吾尔自治区,伊犁哈萨克自治州,奎屯市', 3, 'kuitun', '0992', '833200', 'K', '84.90228', '44.425');
INSERT INTO `tb_region` VALUES (3292, 3289, '霍尔果斯', '霍尔果斯市', '中国,新疆维吾尔自治区,伊犁哈萨克自治州,霍尔果斯市', 3, 'huoerguosi', '0999', '835221', 'H', '80.418189', '44.205778');
INSERT INTO `tb_region` VALUES (3293, 3289, '伊宁', '伊宁县', '中国,新疆维吾尔自治区,伊犁哈萨克自治州,伊宁县', 3, 'yining', '0999', '835100', 'Y', '81.52764', '43.97863');
INSERT INTO `tb_region` VALUES (3294, 3289, '察布查尔锡伯', '察布查尔锡伯自治县', '中国,新疆维吾尔自治区,伊犁哈萨克自治州,察布查尔锡伯自治县', 3, 'chabuchaerxibo', '0999', '835300', 'C', '81.14956', '43.84023');
INSERT INTO `tb_region` VALUES (3295, 3289, '霍城', '霍城县', '中国,新疆维吾尔自治区,伊犁哈萨克自治州,霍城县', 3, 'huocheng', '0999', '835200', 'H', '80.87826', '44.0533');
INSERT INTO `tb_region` VALUES (3296, 3289, '巩留', '巩留县', '中国,新疆维吾尔自治区,伊犁哈萨克自治州,巩留县', 3, 'gongliu', '0999', '835400', 'G', '82.22851', '43.48429');
INSERT INTO `tb_region` VALUES (3297, 3289, '新源', '新源县', '中国,新疆维吾尔自治区,伊犁哈萨克自治州,新源县', 3, 'xinyuan', '0999', '835800', 'X', '83.26095', '43.4284');
INSERT INTO `tb_region` VALUES (3298, 3289, '昭苏', '昭苏县', '中国,新疆维吾尔自治区,伊犁哈萨克自治州,昭苏县', 3, 'zhaosu', '0999', '835600', 'Z', '81.1307', '43.15828');
INSERT INTO `tb_region` VALUES (3299, 3289, '特克斯', '特克斯县', '中国,新疆维吾尔自治区,伊犁哈萨克自治州,特克斯县', 3, 'tekesi', '0999', '835500', 'T', '81.84005', '43.21938');
INSERT INTO `tb_region` VALUES (3300, 3289, '尼勒克', '尼勒克县', '中国,新疆维吾尔自治区,伊犁哈萨克自治州,尼勒克县', 3, 'nileke', '0999', '835700', 'N', '82.51184', '43.79901');
INSERT INTO `tb_region` VALUES (3301, 3206, '塔城', '塔城地区', '中国,新疆维吾尔自治区,塔城地区', 2, 'qoqek', '0901', '834700', 'T', '82.985732', '46.746301');
INSERT INTO `tb_region` VALUES (3302, 3301, '塔城', '塔城市', '中国,新疆维吾尔自治区,塔城地区,塔城市', 3, 'tacheng', '0901', '834700', 'T', '82.97892', '46.74852');
INSERT INTO `tb_region` VALUES (3303, 3301, '乌苏', '乌苏市', '中国,新疆维吾尔自治区,塔城地区,乌苏市', 3, 'wusu', '0992', '833000', 'W', '84.68258', '44.43729');
INSERT INTO `tb_region` VALUES (3304, 3301, '额敏', '额敏县', '中国,新疆维吾尔自治区,塔城地区,额敏县', 3, 'emin', '0901', '834600', 'E', '83.62872', '46.5284');
INSERT INTO `tb_region` VALUES (3305, 3301, '沙湾', '沙湾县', '中国,新疆维吾尔自治区,塔城地区,沙湾县', 3, 'shawan', '0993', '832100', 'S', '85.61932', '44.33144');
INSERT INTO `tb_region` VALUES (3306, 3301, '托里', '托里县', '中国,新疆维吾尔自治区,塔城地区,托里县', 3, 'tuoli', '0901', '834500', 'T', '83.60592', '45.93623');
INSERT INTO `tb_region` VALUES (3307, 3301, '裕民', '裕民县', '中国,新疆维吾尔自治区,塔城地区,裕民县', 3, 'yumin', '0901', '834800', 'Y', '82.99002', '46.20377');
INSERT INTO `tb_region` VALUES (3308, 3301, '和布克赛尔', '和布克赛尔蒙古自治县', '中国,新疆维吾尔自治区,塔城地区,和布克赛尔蒙古自治县', 3, 'hebukesaier', '0990', '834400', 'H', '85.72662', '46.79362');
INSERT INTO `tb_region` VALUES (3309, 3206, '阿勒泰', '阿勒泰地区', '中国,新疆维吾尔自治区,阿勒泰地区', 2, 'altay', '0906', '836500', 'A', '88.13963', '47.848393');
INSERT INTO `tb_region` VALUES (3310, 3309, '阿勒泰', '阿勒泰市', '中国,新疆维吾尔自治区,阿勒泰地区,阿勒泰市', 3, 'aletai', '0906', '836500', 'A', '88.13913', '47.8317');
INSERT INTO `tb_region` VALUES (3311, 3309, '布尔津', '布尔津县', '中国,新疆维吾尔自治区,阿勒泰地区,布尔津县', 3, 'buerjin', '0906', '836600', 'B', '86.85751', '47.70062');
INSERT INTO `tb_region` VALUES (3312, 3309, '富蕴', '富蕴县', '中国,新疆维吾尔自治区,阿勒泰地区,富蕴县', 3, 'fuyun', '0906', '836100', 'F', '89.52679', '46.99444');
INSERT INTO `tb_region` VALUES (3313, 3309, '福海', '福海县', '中国,新疆维吾尔自治区,阿勒泰地区,福海县', 3, 'fuhai', '0906', '836400', 'F', '87.49508', '47.11065');
INSERT INTO `tb_region` VALUES (3314, 3309, '哈巴河', '哈巴河县', '中国,新疆维吾尔自治区,阿勒泰地区,哈巴河县', 3, 'habahe', '0906', '836700', 'H', '86.42092', '48.06046');
INSERT INTO `tb_region` VALUES (3315, 3309, '青河', '青河县', '中国,新疆维吾尔自治区,阿勒泰地区,青河县', 3, 'qinghe', '0906', '836200', 'Q', '90.38305', '46.67382');
INSERT INTO `tb_region` VALUES (3316, 3309, '吉木乃', '吉木乃县', '中国,新疆维吾尔自治区,阿勒泰地区,吉木乃县', 3, 'jimunai', '0906', '836800', 'J', '85.87814', '47.43359');
INSERT INTO `tb_region` VALUES (3317, 3206, ' ', '直辖县级', '中国,新疆维吾尔自治区,直辖县级', 2, '', '', '', 'Z', '91.132212', '29.660361');
INSERT INTO `tb_region` VALUES (3318, 3317, '石河子', '石河子市', '中国,新疆维吾尔自治区,直辖县级,石河子市', 3, 'shihezi', '0993', '832000', 'S', '86.041075', '44.305886');
INSERT INTO `tb_region` VALUES (3319, 3317, '阿拉尔', '阿拉尔市', '中国,新疆维吾尔自治区,直辖县级,阿拉尔市', 3, 'aral', '0997', '843300', 'A', '81.285884', '40.541914');
INSERT INTO `tb_region` VALUES (3320, 3317, '图木舒克', '图木舒克市', '中国,新疆维吾尔自治区,直辖县级,图木舒克市', 3, 'tumxuk', '0998', '843806', 'T', '79.077978', '39.867316');
INSERT INTO `tb_region` VALUES (3321, 3317, '五家渠', '五家渠市', '中国,新疆维吾尔自治区,直辖县级,五家渠市', 3, 'wujiaqu', '0994', '831300', 'W', '87.526884', '44.167401');
INSERT INTO `tb_region` VALUES (3322, 3317, '北屯', '北屯市', '中国,新疆维吾尔自治区,直辖县级,北屯市', 3, 'beitun', '0906', '836000', 'B', '87.808456', '47.362308');
INSERT INTO `tb_region` VALUES (3323, 3317, '铁门关', '铁门关市', '中国,新疆维吾尔自治区,直辖县级,铁门关市', 3, 'tiemenguan', '0906', '836000', 'T', '86.194687', '41.811007');
INSERT INTO `tb_region` VALUES (3324, 3317, '双河', '双河市', '中国,新疆维吾尔自治区,直辖县级,双河市', 3, 'shuanghe', '0909', '833408', 'S', '91.132212', '29.660361');
-- ----------------------------
-- Table structure for tb_rule
-- ----------------------------
DROP TABLE IF EXISTS `tb_rule`;
CREATE TABLE `tb_rule` (
`rule_id` bigint NOT NULL AUTO_INCREMENT COMMENT '规则ID',
`rule_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '规则名称',
`rule_title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '规则标题',
`rule_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '规则类型',
`rule_content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '规则内容',
`status` int NULL DEFAULT NULL COMMENT '状态(0-显示,1-隐藏)',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`delete_time` datetime(0) NULL DEFAULT NULL COMMENT '删除时间',
`create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '创建者',
`update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '更新者',
`delete_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '删除者',
`del_flag` int NULL DEFAULT NULL COMMENT '删除标记(0-正常,1-删除)',
PRIMARY KEY (`rule_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '平台规则' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tb_rule
-- ----------------------------
INSERT INTO `tb_rule` VALUES (1, NULL, '关于我们', 'about_us', '124123', 0, '2024-04-14 01:51:39', '2024-04-14 01:53:59', '2024-04-14 00:00:00', 'admin', 'admin', 'admin', 0);
SET FOREIGN_KEY_CHECKS = 1;